我正在阅读来自亚马逊的“使用tdd方法构建node.js rest api”。 当我按照“逐步”进行操作时,会有些麻烦。 在书中,作者使用sinon包,但未在autosuggest中显示。 我正在使用VSCODE IDE。
我看到了sinon文档,也看到了许多模拟对象的方法。 https://sinonjs.org/releases/v7.3.2/mocks/#expectations 但是在我的vscode IDE中,“建议”,“验证”,“恢复”和期望未显示在自动建议中。 该对象只是“任何”对象。
我通过“ npm install sinon --save-dev”命令安装了sinon。
CustomerModelMock.expects('create')//just any object!
.withArgs(newCustomer)//just any object!
.resolves(expectedCreatedeCustomer);//just any object!
通常不使用sinon进行自动提示吗?