apollosc/e2e/app/apolloservice.service.spec.ts
2018-09-21 15:09:06 +05:30

16 lines
416 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { ApolloserviceService } from './apolloservice.service';
describe('ApolloserviceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ApolloserviceService]
});
});
it('should be created', inject([ApolloserviceService], (service: ApolloserviceService) => {
expect(service).toBeTruthy();
}));
});