当我使用下面的代码时,未定义显示的错误(在 then 内部)
文档链接
it("should return error", function () {
return request(app).get("/verify")
.expect(200)
.then(function (res) {
return expect(res.body.error[0].message).to.equal("NEW_CODE_REQUIRED");
});
});
我该如何检查?