1 import { shallow } from 'enzyme'; 2 3 const shallowWithStore = (component: any, store: any) => { 4 const context = { 5 store 6 }; 7 return shallow(component, { context }); 8 }; 9 10 export default shallowWithStore;