gpt4 book ai didi

graphql - 测试运行完成后,Jest 一秒钟都没有退出。 --检测打开句柄

转载 作者:行者123 更新时间:2023-12-02 13:57:36 25 4
gpt4 key购买 nike

我将测试使用 Jest 运行的后端服务器。有时会成功,但有时会显示这样的错误。 enter image description here

因此,如果我按照建议使用 --detectOpenHandles 标志,它总是成功,不会显示任何错误。这是测试代码。

  it("should be able to initialize a server (development)",async (done) => {
// Before main() is called there is no active connection:

expect(connection.readyState).toBe(0);
return main({
env: "dev",
port: PORT,
})
.then(async (server: ApolloServer) => {
// After main() got called, there is an active connection:
expect(connection.readyState).toBe(1);
await server.stop();
done();
})
});
afterAll(async () => {
await connection.close(); //connection is mongoose.connection
});

我不知道为什么它在标记时失败。奇怪的是它有时成功,有时失败。

谢谢

最佳答案

我遇到了类似的问题,并通过在传递给 afterAll 的函数中返回一个 promise 来解决它。例如:

afterAll(() => {
return connection.close(); // connection.close() returns a promise
});

Docs for reference

关于graphql - 测试运行完成后,Jest 一秒钟都没有退出。 --检测打开句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52104173/

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