super-productivity/app-src/scripts/help-section/help-section-d.spec.js
2017-02-11 18:04:25 +01:00

21 lines
No EOL
468 B
JavaScript

'use strict';
describe('Directive: helpSection', function () {
// load the directive's module
beforeEach(module('superProductivity'));
beforeEach(module('templates'));
var element,
scope;
beforeEach(inject(function ($rootScope) {
scope = $rootScope.$new();
}));
it('should do something', inject(function ($compile) {
element = $compile('<help-section></help-section>')(scope);
scope.$digest();
expect(true).toBe(true);
}));
});