作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!