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