super-productivity/app-src/scripts/main/global-services/git-s.spec.js
2017-02-11 23:40:33 +01:00

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);
});
});