super-productivity/app-src/scripts/main/global-services/google-api-s.spec.js
2018-02-24 13:28:15 +01:00

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