Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 619 Bytes

README.md

File metadata and controls

32 lines (18 loc) · 619 Bytes

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

Contribution Guidelines

License

MIT licensed

Copyright © 2018 mobile.de GmbH