我正在尝试编写测试聊天机器人的测试用例,并且我需要在每个响应的it
块中检查很多事情。所以现在的流程是,我发送了许多消息,并且我试图在forEach循环中包含一个describe语句,但是由于某种原因,这是行不通的。 it
块中没有任何测试正在运行。
const body = ['hi', 'transfer 20 sms', 'no', 'no', 'first one', 'first one']
describe('API', () => {
describe('Basic flow', () => {
body.forEach((v, i) => {
describe(`Should get response for message #${i + 1}`, () => {
return agent.post('/watson/send').send({
'content': {
'userInput': v,
'userDial': '123456'
}
}).then(response => {
it('Body should exist', done => {
// this part doesnt work
const { body } = response
const { text } = response.body.reply
expect(_.isEmpty(body)).to.equal(false)
done()
})
})
})
})
})
})
我的理解是,这是行不通的,因为mocha找不到在promise中的it
块。我无法弄清楚如何对其进行重组,以使其具有多个测试API相同结果的it
块。
答案 0 :(得分:0)
describe
需要it
块,您正在其中直接编写代码。尝试使用挂钩执行API,然后test
对其响应。
describe('Should get response for message', function () {
let _response;
// before hook
before(function () {
return agent.post('/watson/send').send({
'content': {
'userInput': v,
'userDial': '123456'
}
}).then(response => {
_response = response;
done();
})
});
// test cases
it('Body should exist', done => {
// this part doesnt work
const { body } = _response
const { text } = _response.body.reply
expect(_.isEmpty(body)).to.equal(false)
done()
})
});