16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
import { InfraHostService } from './infra-host.service';
|
|
|
|
describe('InfraHostService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [InfraHostService]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([InfraHostService], (service: InfraHostService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|