我最近想测试一些自定义方法是否在componentDidMount
React 组件的方法中被有条件地调用。
componentDidMount() {
if (this.props.initOpen) {
this.methodName();
}
}
我使用 Jest 作为我的测试框架,其中包括jest.fn()
模拟/间谍。我已经读过,通过执行以下操作,使用 Sinon 进行测试将相当简单:
sinon.spy(Component.prototype, "methodName");
const wrapper = mount(<Component {...props} />);
expect(wrapper.instance().methodName).toHaveBeenCalled();
我正在尝试使用 Jest 重新创建它,如下所示:
Component.prototype.methodName = jest.fn();
const wrapper = mount(<Component {...props} />);
expect(wrapper.instance().methodName).toHaveBeenCalled();
此代码失败并引发以下错误:
jest.fn() value must be a mock function or spy.
Received:
function: [Function bound mockConstructor]
是否可以使用 Jest 测试此功能?如果是这样,如何?