我正在使用 nock 和 mocha 进行 restapi 测试。但是当我使用时,.reply(200,"msg" :"url matched")
他们只检查服务器编码中的 200 响应。如何正确使用。我的代码如下:它是一个否定的例子。实际上他们表现出404
回应。但是当我使用200
他们时,他们通过了这个测试用例。
it("test case for /hotel/:id/location api", function (done) {
nock("http://localhost:3010")
.get('/hotel/1/location')
.reply(200, {'msg': 'response matched'});
server
.get("/hotel/1/location")
.expect("Content-type", /json/)
.end(function (err, res) {
if (res.success == false) {
res.status.should.equal(200);
}
if (err)
{
res.body.error.should.equal(true);
}
done();
});
nock.cleanAll();
});
});