crusader 19ef851759 ing
2018-05-25 20:31:58 +09:00

16 lines
362 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { Effects } from './noauth-probe.effect';
describe('NoAuth-Probe.Effects', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [Effects]
});
});
it('should be created', inject([Effects], (effects: Effects) => {
expect(effects).toBeTruthy();
}));
});