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