shallow-with-store.js 121 B

12345
  1. import { shallow } from 'enzyme';
  2. export default (component, store) =>
  3. shallow(component, { context: { store } });