在 Supertest 上使用 PUT 方法
Using PUT method on Supertest
如何在 SuperTest 中使用 PUT 方法?我得到的只是“404 Not found”作为响应。
请求处理程序:
router.put('/', function (req, res) {
res.type('json');
FooResource(req.body, function () {
res.send("{}");
});
});
测试套件:
describe("PUT /foo/fii", function () {
it("Respond with 200", function (done) {
request(app)
.put('/')
.set('Accept', 'application/json')
.expect(200, done);
});
});
已添加:
it("Respond with 200", function (done) {
request(app)
.put('/')
.send("{}")
.expect(200)
.end(function(err, res) {
done();
})
});
现在可以使用了(?)
让我在这里分享一个例子,使用 promises,它不需要 done()
:
describe('PUT: update task (id:5)', function() {
test('It should return response 200.', function() {
return request(app)
.put('/api/v1.0/tasks/5')
.send({title:'Code Refactor API',user:'ivanleoncz'})
.expect(200);
});
});
如何在 SuperTest 中使用 PUT 方法?我得到的只是“404 Not found”作为响应。
请求处理程序:
router.put('/', function (req, res) {
res.type('json');
FooResource(req.body, function () {
res.send("{}");
});
});
测试套件:
describe("PUT /foo/fii", function () {
it("Respond with 200", function (done) {
request(app)
.put('/')
.set('Accept', 'application/json')
.expect(200, done);
});
});
已添加:
it("Respond with 200", function (done) {
request(app)
.put('/')
.send("{}")
.expect(200)
.end(function(err, res) {
done();
})
});
现在可以使用了(?)
让我在这里分享一个例子,使用 promises,它不需要 done()
:
describe('PUT: update task (id:5)', function() {
test('It should return response 200.', function() {
return request(app)
.put('/api/v1.0/tasks/5')
.send({title:'Code Refactor API',user:'ivanleoncz'})
.expect(200);
});
});