在我的 mocha-test 套件中,我想测试一个在后台进行异步调用的功能。我怎样才能等到异步调用完成?
例如,我打了两个背靠背的邮政电话。第一个 post 调用也在内部进行异步调用,直到该异步操作完成,第二个 post 调用不会通过。
我需要以下任一:
1) 在两个 post 调用之间放置一个延迟,以确保第一个 post 中的异步部分是完整的。
2) 重复进行第二次 post call 直到它通过。
3) 或者如何通过 mocha-chai 测试异步调用?
下面是示例:
describe('Back to back post calls with asynchronous operation', ()=> {
it('1st and 2nd post', (done) => {
chai.request(server)
.post('/thisis/1st_post')
.send()
.end((err, res) => {
expect(res.statusCode).to.equal(200);
/* HERE I Need A Delay or a way to call
the below post call may be for 5 times */
chai.request(server)
.post('/thisis/second_post')
.send()
.end((err, res) => {
expect(res.statusCode).to.equal(200);
});
done();
});
});
});
有没有办法处理这个?请帮忙。
谢谢。