sinon chai:使用Sinon.JS模拟框架的断言扩展Chai 源码
Sinon.JS的柴断言 Sinon-Chai提供了一组自定义断言,以便通过断言库使用间谍,存根和框架。 通过Sinon.JS的所有强大工具,您可以获得Chai的所有好处。 而不是使用Sinon.JS的断言: sinon . assert . calledWith ( mySpy , "foo" ) ; 或笨拙地尝试在间谍属性上使用Chai的should或expect接口: mySpy . calledWith ( "foo" ) . should . be . ok ; expect ( mySpy . calledWith ( "foo" ) ) . to . be . ok ;
用户评论