mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-31 19:50:44 +00:00
17 lines
No EOL
323 B
JavaScript
17 lines
No EOL
323 B
JavaScript
'use strict';
|
|
|
|
describe('Service: GitLog', function () {
|
|
// load the service's module
|
|
beforeEach(module('superProductivity'));
|
|
|
|
// instantiate service
|
|
var GitLog;
|
|
beforeEach(inject(function (_GitLog_) {
|
|
GitLog = _GitLog_;
|
|
}));
|
|
|
|
it('should be defined', function () {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
}); |