使用supertest
在JavaScript中测试异步HTTP请求时,这两个片段之间的区别是什么?其中一个是正确的而另一个是错的吗?
request('http://localhost:8080/').get('/api/people')
.expect(res => res.body.should.have.length(5))
与
request('http://localhost:8080/').get('/api/people')
.then(res => res.body.should.have.length(5))
我能注意到的唯一区别是:
expect
返回一个Test
对象,当测试失败时,打印一个大的堆栈跟踪then
返回一个Promise
对象,当测试失败时,打印一个小堆栈跟踪根据您使用的测试运行器显然会影响答案,但像Mocha
这样的东西将允许您直接在测试中返回Promise
,这将等待测试通过之前解决。
所以如果你有类似的东西:
describe('Your test case', function () {
it('will wait for promise to resolve', function () {
return request('http://localhost:8080/').get('/api/people')
.then(res => res.body.should.have.length(5))
})
})
而在另一个实例中,你真的应该根据https://www.npmjs.com/package/supertest docs使用完成回调。