member_webapp/@overflow/probe/store/trash/probe-host/probe-host.effect.spec.ts

16 lines
359 B
TypeScript
Raw Normal View History

2018-04-25 09:04:47 +00:00
import { TestBed, inject } from '@angular/core/testing';
import { Effects } from './probe-host.effect';
describe('ProbeDetail.Effects', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [Effects]
});
});
it('should be created', inject([Effects], (effects: Effects) => {
expect(effects).toBeTruthy();
}));
});