reactjs – 使用React和Redux内部的酶进行嵌套组件测试

前端之家收集整理的这篇文章主要介绍了reactjs – 使用React和Redux内部的酶进行嵌套组件测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个组件SampleComponent,它安装另一个“连接组件”(即容器)。当我尝试通过挂载测试SampleComponent时(因为我需要componentDidMount),我得到错误

Invariant Violation: Could not find “store” in either the context or
props of “Connect(ContainerComponent)”. Either wrap the root component
in a,or explicitly pass “store” as a prop to
“Connect(ContainerComponent)”.

测试这个的最佳方法是什么?

酶的安装采用可选参数。你需要的两个是必需的

options.context 原文链接:https://www.f2er.com/react/301342.html

猜你在找的React相关文章