'use strict';
// fake test because we cant have no test at alldescribe('exported', function () {
var exported = {
test: true
};
Object.keys(exported).forEach(function (key) {
it('should export ' + key, function () {
expect(exported[key]).toBeDefined();
});
});
});