shared-service.service.spec.ts
410 Bytes
import { TestBed, inject } from '@angular/core/testing';
import { SharedServiceService } from './shared-service.service';
describe('SharedServiceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [SharedServiceService]
});
});
it('should ...', inject([SharedServiceService], (service: SharedServiceService) => {
expect(service).toBeTruthy();
}));
});