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