mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 11:10:04 +00:00
21 lines
No EOL
452 B
JavaScript
21 lines
No EOL
452 B
JavaScript
'use strict';
|
|
|
|
describe('Component: progressBar', () => {
|
|
|
|
// load the directive's module
|
|
beforeEach(module('superProductivity'));
|
|
beforeEach(module('templates'));
|
|
|
|
let element;
|
|
let scope;
|
|
|
|
beforeEach(inject(($rootScope) => {
|
|
scope = $rootScope.$new();
|
|
}));
|
|
|
|
it('should do something', inject(($compile) => {
|
|
element = $compile('<progress-bar></progress-bar>')(scope);
|
|
scope.$digest();
|
|
expect(true).toBe(true);
|
|
}));
|
|
}); |