describe('PostsEffects', () => {
beforeEach(() => TestBed.configureTestingModule({
imports: [
EffectsTestingModule
],
providers: [
PostsEffects,
{
provide: PostsService,
useValue: jasmine.createSpyObj('postsService', ['get'])
}
]
}));
});