member_webapp/@overflow/member/store/auth/auth.effect.spec.ts

16 lines
346 B
TypeScript
Raw Normal View History

2018-04-06 06:59:49 +00:00
import { TestBed, inject } from '@angular/core/testing';
import { Effects } from './auth.effect';
describe('Auth.Effects', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [Effects]
});
});
it('should be created', inject([Effects], (effects: Effects) => {
expect(effects).toBeTruthy();
}));
});