gpt4 book ai didi

javascript - 带诺克的 Mocha 茶 : why am I getting timeout errors when doing cleanup in 'after()' and 'afterEach()' ?

转载 作者:行者123 更新时间:2023-12-03 01:10:02 27 4
gpt4 key购买 nike

我正在 Mocha/柴套件中使用 Nock stub ( mock ?)一个获取请求,它似乎工作正常。但是,当我想在 describe 之后清理并将一切恢复正常时,我正在执行 nock stub ,我收到 Mocha 超时错误。

我对 nock 的设置(我将在每个 it 之前执行此操作,使用不同的 URL,现在我只为其中一个执行此操作)是

it('should succeed for correct nickname, move and gameID with game in progress', () =>
Promise.resolve()
.then(_ => {
nock('http://localhost:8080')
.post(`/api/user/${nickname}/game/${gameInProgress.id}`)
.reply(200, {
message: 'successful move'
})
return logic.makeAGameMove(nickname, nickname2, {from: "e2", to: "e4", promotion: "q"}, gameInProgress.id, token)
})
.then(res => {
const {message} = res
expect(message).to.equal('successful move')
})

描述的末尾我有

 afterEach(_=> nock.cleanAll())
after(_=> nock.restore())

但我不断收到以下错误

        "after each" hook for "should succeed for correct nickname, move and gameID with game in progress":
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
"after all" hook:
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.

我有点不知所措。我什至尝试将对 nock.cleanAllnock.restore 的调用包装在 Promises 中,但没有帮助。我哪里出错了?

最佳答案

您正在为箭头函数提供一个参数。 Mocha 认为您正在使用 done,您只需完成它,这样就不会使用任何参数。

(()=>nock.cleanAll())

而不是:

(_=>nock.cleanAll())

关于javascript - 带诺克的 Mocha 茶 : why am I getting timeout errors when doing cleanup in 'after()' and 'afterEach()' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52238510/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com