16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
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();
|
|
}));
|
|
});
|