member_webapp/@overflow/notification/store/detail/notification.effect.spec.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

16 lines
362 B
TypeScript

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