Skip to content

Instantly share code, notes, and snippets.

@visualskyrim
Created May 22, 2017 05:34
Show Gist options
  • Save visualskyrim/3aa47ee3e667ca332d3bfb81596922a4 to your computer and use it in GitHub Desktop.
Save visualskyrim/3aa47ee3e667ca332d3bfb81596922a4 to your computer and use it in GitHub Desktop.
Use Enzyme to test React/Redux container - Code List 2
import { shallow } from 'enzyme';
const shallowWithStore = (component, store) => {
const context = {
store,
};
return shallow(component, { context });
};
export default shallowWithStore;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment