member_webapp/@overflow/noauth-probe/store/connecting/noauth-probe-connecting.effect.spec.ts

16 lines
384 B
TypeScript
Raw Normal View History

2018-04-06 20:02:18 +09:00
import { TestBed, inject } from '@angular/core/testing';
2018-05-31 16:38:44 +09:00
import { Effects } from './noauth-probe-connecting.effect';
2018-04-06 20:02:18 +09:00
2018-05-31 16:38:44 +09:00
describe('noauth-probe-connecting.Effects', () => {
2018-04-06 20:02:18 +09:00
beforeEach(() => {
TestBed.configureTestingModule({
providers: [Effects]
});
});
it('should be created', inject([Effects], (effects: Effects) => {
expect(effects).toBeTruthy();
}));
});