member_webapp/@overflow/noauth-probe/service/noauth-probe.service.spec.ts

16 lines
405 B
TypeScript
Raw Normal View History

2018-04-06 11:02:18 +00:00
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();
}));
});