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