标签: sinon
在尝试检查是否正确使用参数调用函数时,Sinon断言更好,因为它会告诉您参数的哪一部分失败。
也就是说,我很难让它与自定义匹配器一起使用。文档说componentDidUpdate与sinon.assert.calledWithMatch相同,这使我相信自己可以做到
componentDidUpdate
sinon.assert.calledWithMatch
sinon.assert.calledWith(spy, sinon.match(args))
但事实并非如此。
我做错什么了吗?