Gets the singleton MockNgRedux instance. Useful for cases where your tests need to spy on store methods, for example.
Returns a subject that's connected to any observable returned by the given selector. You can use this subject to pump values into your components or services under test; when they call .select or @select in the context of a unit test, MockNgRedux will give them the values you pushed onto your stub.
Returns a mock substore that allows you to set up selectorStubs for any 'fractal' stores your app creates with NgRedux.configureSubStore.
If your app creates deeply nested substores from other substores, pass the chain of pathSelectors in as ordered arguments to mock the nested substores out.
Reset all previously configured stubs.
Generated using TypeDoc
Convenience mock to make it easier to control selector behaviour in unit tests.