@mt-testutils/mock-store
v1.0.5
Published
A mock Redux store for Jest unit tests
Downloads
3
Readme
mock-store
Simple utility function to create a mock Redux store, to be used for unit tests.
Installation
npm install --save-dev @mt-testutils/mock-store
Usage
import createMockStore from '@mt-testutils/mock-store';
// Initial Redux state for the mock store, defaults to {} if omitted
const state = {
foo: 'bar'
};
const mockStore = createMockStore(state);
Change Log
- See CHANGELOG.md
Contribution Guidelines
- See CONTRIBUTING.md
License
Copyright © 2018 mobile.de GmbH