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

16 lines
368 B
TypeScript
Raw Normal View History

2018-04-06 11:02:18 +00:00
import { TestBed, inject } from '@angular/core/testing';
import { ProbeService } from './probe.service';
describe('ProbeService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ProbeService]
});
});
it('should be created', inject([ProbeService], (service: ProbeService) => {
expect(service).toBeTruthy();
}));
});