gpt4 book ai didi

node.js - Jest 没有正确退出

转载 作者:行者123 更新时间:2023-12-04 17:32:53 24 4
gpt4 key购买 nike

在 nodeJS 中使用 Jest 运行此集成测试时:

const request = require("supertest");
let server;

describe("/api/chat", () => {
beforeEach(() => {
server = require("../../api");
});
describe("GET /userlist", () => {
it("show userlist", async () => {
const result = await request(server)
.get("/api/chat/userlist")
.set("X-Auth", process.env.XAuth);
expect(result.status).toBe(200);
});
});
afterAll(done => {
server.close(done);
});
});

使用 api.js 文件:

const PORT = process.env.PORT;

const server = app.listen(PORT, () => {
console.log(`listening on port ${PORT}`);
});

app.use("/api/chat", chat);

module.exports = server;

我得到一个错误,它阻止了它退出:

Jest has detected the following 1 open handle potentially keeping Jest from exiting:

● TCPSERVERWRAP

21 | const PORT = process.env.PORT;
22 |
> 23 | const server = app.listen(PORT, () => {
| ^
24 | console.log(`listening on port ${PORT}`);
25 | });
26 |

有什么想法吗?我已经在 Github 上查看过,但没有任何帮助,或者只是一种解决方法。如何正确关闭连接?

最佳答案

我刚开始使用 jest,经过几次实验,以下方法对我有用。

测试时修改app.js如下,

const PORT = process.env.PORT;

// COMMENT THESE
// const server = app.listen(PORT, () => {
// console.log(`listening on port ${PORT}`);
// });

app.use("/api/chat", chat);

module.exports = app; // EXPORT app

并且在测试文件上使用 supertest 如下,

// IMPORT app HERE ARE USE IT AS FOLLOWS
await request(app)
.post("/api/chat")
.set("Content-Type", "application/json")
.send({ ...your_payload });

最后关闭数据库连接,

afterAll(done => {
// THIS IS HOW YOU CLOSE CONNECTION IN MONGOOSE (mongodb ORM)
mongoose.connection.close();
done();
});

关于node.js - Jest 没有正确退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57933788/

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