member_webapp/@overflow/infra/service/infra-host.service.spec.ts

16 lines
393 B
TypeScript
Raw Normal View History

2018-06-04 08:25:29 +00:00
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();
}));
});