super-productivity/app/scripts/main/global-services/git-log-s.spec.js
2017-01-22 22:13:01 +01:00

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