mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 10:40:12 +00:00
17 lines
329 B
JavaScript
17 lines
329 B
JavaScript
'use strict';
|
|
|
|
describe('Service: Dialogs', function () {
|
|
// load the service's module
|
|
beforeEach(module('superProductivity'));
|
|
|
|
// instantiate service
|
|
var Dialogs;
|
|
beforeEach(inject(function (_Dialogs_) {
|
|
Dialogs = _Dialogs_;
|
|
}));
|
|
|
|
it('should be defined', function () {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
});
|