member_webapp/@overflow/noauth-probe/service/noauth-probe.service.spec.ts
crusader c613e312f0 ing
2018-05-24 16:26:43 +09:00

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