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