const spy = jest.spyOn(CardResult.prototype, 'expandAnswers');
const wrapper = mount(
<IntlProvider locale="en">
<Provider store={store}>
<CardResult
data={data}
answers={answers}
votedStatus
single
dataCondition="style1"
/>
</Provider>
</IntlProvider>
);
wrapper.find('#cardresultbutton1').simulate('click');
wrapper.update();
expect(spy).toHaveBeenCalled();
我正在尝试测试一个反应组件方法。但我收到以下错误。请帮忙。
TypeError:无法读取未定义的属性“_isMockFunction”