5
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”

4

1 回答 1

6

当您尝试模拟的方法未定义时,将引发此错误。

这将产生相同的错误:

const myObject = {}
jest.spyOn(myObject, 'nonexistent')

所以你的问题很可能在定义中CardResult,因为CartResult.prototype.expandAnswersundefined

于 2017-10-22T16:25:55.573 回答