gpt4 book ai didi

javascript - 我如何在 Jest 中模拟这个方法链?

转载 作者:行者123 更新时间:2023-11-30 08:22:03 25 4
gpt4 key购买 nike

zoomOut(callback) {
// Zooms out the current screen
this.view.current.zoomOut(300).done(() => {
(hasCallback(callback)) && callback();
});
}

我正在尝试测试上面的功能,但我不断收到以下错误:

TypeError: this.view.current.zoomOut(...).done is not a function

我如何在 Jest 中模拟这个方法链?

最佳答案

感谢 BudgieInWA,我能够通过返回 done 来解决这个问题。

对于那些正在使用 Enzyme 测试 React 组件的人,您可以按照以下方法进行测试:

it('should call callback', () => {
const wrapper = shallow(<Zoom {...minProps}/>);
const instance = wrapper.instance();

const callback = jest.fn();

instance.view = {
current: {
zoomOut: jest.fn(() => {
return {
done: jest.fn((callback) => {
callback();
})
};
})
}
};

expect(callback).toHaveBeenCalledTimes(0);
instance.zoomOut(callback);
expect(callback).toHaveBeenCalledTimes(1);
});

关于javascript - 我如何在 Jest 中模拟这个方法链?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51922895/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com