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

21 lines
460 B
JavaScript

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