mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-08-01 20:12:11 +00:00
17 lines
No EOL
320 B
JavaScript
17 lines
No EOL
320 B
JavaScript
'use strict';
|
|
|
|
describe('Service: GoogleApi', () => {
|
|
// load the service's module
|
|
beforeEach(module('superProductivity'));
|
|
|
|
// instantiate service
|
|
let GoogleApi;
|
|
beforeEach(inject((_GoogleApi_) => {
|
|
GoogleApi = _GoogleApi_;
|
|
}));
|
|
|
|
it('should be defined', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
}); |