无法使用 done() 或 async/await 来修复我未解决的承诺
Not able to use done() or async/await to fix my promise not resolving
我正在尝试学习 api 使用 chai-http 和 mocha 进行测试。
我试过 done()
和 async/await
但我不明白为什么它没有解决以下问题 -
错误 -
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
规格文件 -
import * as chai from 'chai';
import { assert } from 'chai';
import chaiHttp = require('chai-http');
import 'mocha';
chai.use(chaiHttp);
const expect = chai.expect;
const url = 'https://api.weather.gov';
describe('Weather API', () => {
it('Should be up and running', () => {
return chai.request(url).get('/').then(res => {
expect(res).to.be.status(200);
});
});
it('Should return weather of washington monument', () => {
return chai.request(url).get('/gridpoints/LWX/96,70/forecast')
.set('User-Agent', 'test@email.com')
.set('Accept', 'application/vnd.noaa.dwml+xml')
.then(res => {
expect(res).to.be.status(200);
console.log(res.body.properties.periods);
});
});
});
否则,我没有正确实施我尝试过的解决方案。非常感谢任何帮助。
当你使用 promise 时,你必须使用 chai-as-promised
,并且,你可以这样使用 async/await:
import chaiAsPromised = require("chai-as-promised");
chai.use(chaiAsPromised);
//...
it('Should be up and running', async () => {
var response = await chai.request(url).get('/')
return response.should.have.status(200)
// you can use "return expect(response).to.have.status(200);" too
})
请注意,现在 done
未使用,并添加了一个 return
。
我正在尝试学习 api 使用 chai-http 和 mocha 进行测试。
我试过 done()
和 async/await
但我不明白为什么它没有解决以下问题 -
错误 -
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
规格文件 -
import * as chai from 'chai';
import { assert } from 'chai';
import chaiHttp = require('chai-http');
import 'mocha';
chai.use(chaiHttp);
const expect = chai.expect;
const url = 'https://api.weather.gov';
describe('Weather API', () => {
it('Should be up and running', () => {
return chai.request(url).get('/').then(res => {
expect(res).to.be.status(200);
});
});
it('Should return weather of washington monument', () => {
return chai.request(url).get('/gridpoints/LWX/96,70/forecast')
.set('User-Agent', 'test@email.com')
.set('Accept', 'application/vnd.noaa.dwml+xml')
.then(res => {
expect(res).to.be.status(200);
console.log(res.body.properties.periods);
});
});
});
否则,我没有正确实施我尝试过的解决方案。非常感谢任何帮助。
当你使用 promise 时,你必须使用 chai-as-promised
,并且,你可以这样使用 async/await:
import chaiAsPromised = require("chai-as-promised");
chai.use(chaiAsPromised);
//...
it('Should be up and running', async () => {
var response = await chai.request(url).get('/')
return response.should.have.status(200)
// you can use "return expect(response).to.have.status(200);" too
})
请注意,现在 done
未使用,并添加了一个 return
。