super-productivity/app/scripts/input-duration/input-duration-d.spec.js
2017-01-03 18:32:15 +01:00

21 lines
475 B
JavaScript

'use strict';
describe('Directive: inputDuration', 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('<input-duration></input-duration>')(scope);
scope.$digest();
expect(true).toBe(true);
}));
});