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();
|
|
|
|
}));
|
|
|
|
});
|