@reibo/ngrx-mock-test
v0.0.8
Published
[](https://www.npmjs.com/package/%40reibo%2Fngrx-mock-test)  [ => {
TestBed.configureTestingModule({
imports: [ MockStoreModule.forRoot('feature_name', initialState)],
...
}).compileComponents();
}));Next get store out of the testbed
store = TestBed.get(Store);Change the state in your test during testing with the mock
store.dispatch(new MockAction({ name: "foo" }));Do you like to work with streams and you us marble testing?
Try out:
const inputStream = m.hot('-a-b-a', stream);
store.dispatch(new MockStream(inputStream));