单元测试FormSection组件

时间:2017-09-22 18:25:30

标签: reactjs unit-testing jestjs redux-form enzyme

尝试用酶浅层对redux-form FormSection组件进行单元测试,并得到以下错误 Error: FormSection must be inside a component decorated with reduxForm()

避免此错误的最佳选择是什么?

1 个答案:

答案 0 :(得分:3)

我能够通过在上下文中模拟reduxForm来解决这个错误,如下所示:
shallow(<MyComponent {...props} />, { context:{ _reduxForm: {}}});