taurus-tv/src/app/tsp-info/shared/tsp-info.service.spec.ts
2017-09-06 18:53:31 +02:00

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