mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 11:10:04 +00:00
17 lines
No EOL
308 B
JavaScript
17 lines
No EOL
308 B
JavaScript
'use strict';
|
|
|
|
describe('Service: Git', function () {
|
|
// load the service's module
|
|
beforeEach(module('superProductivity'));
|
|
|
|
// instantiate service
|
|
var Git;
|
|
beforeEach(inject(function (_Git_) {
|
|
Git = _Git_;
|
|
}));
|
|
|
|
it('should be defined', function () {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
}); |