NetanelBasal
4/22/2017 - 7:48 PM

et4.ts

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