不变违规:无法在“Connect(IndexResult)”的上下文或道具中找到“store”。将根组件包装在a中,或者将“store”显式传递为“Connect(IndexResult)”的支柱。
尝试使用mount
时出现此错误const wrapper = mount();
答案 0 :(得分:1)
创建此功能:
export const wrapIntoReduxProvider = testingContainerComponent => (
<Provider store={organizationStore({})}>
{testingContainerComponent}
</Provider>
);
并将您的组件包装到其中
const wrapper = mount(wrapIntoReduxProvider(<YourComponent />));