在运行测试时,我试图摆脱笑话消息“Jest 已检测到以下 2 个打开的句柄”。但我现在已经走进了死胡同。
这是我试图修复的测试之一:
describe('POST /products', function () {
let agent, server
beforeEach(function (done) {
server = app.listen(3001, (err) => {
if (err) return done(err);
agent = supertest(server)
done();
})
utils.reset()
})
it('Adds a new product', function () {
utils.testCategories().push('Celulares') // This function returns an array of strings
return agent
.post('/products')
.send({
name: 'iPhone 13 Pro',
brand: 'Apple',
category: 'Celulares',
stock: 8
})
.expect(201)
.expect('Content-Type', /json/)
.expect(function (res) {
expect(res.body).toEqual({
name: 'iPhone 13 Pro',
categoryId: 1,
brand: 'Apple',
stock: 8,
available: true,
reviews: [],
rating: 0
})
expect(utils.testProducts()).toHaveLength(1) // This one an array of objects
expect(utils.testProducts()[0].name).toEqual('iPhone 13 Pro')
})
afterEach((done) => {
server.close(done)
})
})
})
我没有发现该代码有任何问题,我打开服务器,然后关闭它。
这是我正在尝试测试的路线:
router.post('/products', async (req, res) => {
const { name, brand, category, stock } = req.body;
addProduct(name, brand, category, stock) // This function makes an async operation with a fake db
.then((results) => {
res.status(201).send(results)
})
.catch(err => res.status(404).send({ error: err.message }))
})
测试完成后,jest 会在控制台上打印此消息
Jest has detected the following 1 open handle potentially keeping Jest from exiting:
● bound-anonymous-fn
6 | let agent, server
7 | beforeEach(function (done) {
> 8 | server = app.listen(3001, (err) => {
| ^
9 | if (err) return done(err);
10 | agent = supertest(server)
11 | done();
at Function.listen (node_modules/express/lib/application.js:635:24)
at Object.<anonymous> (tests/11.test.js:8:18)
at TestScheduler.scheduleTests (node_modules/@jest/core/build/TestScheduler.js:333:13)
at runJest (node_modules/@jest/core/build/runJest.js:404:19)
at _run10000 (node_modules/@jest/core/build/cli/index.js:320:7)
at runCLI (node_modules/@jest/core/build/cli/index.js:173:3)
也许值得注意的是,在 GET 请求中,此消息根本不存在此问题。
另外,我在执行测试时尝试使用 --forceExit,但这不是一个正确的解决方案,它实际上一直在打印消息。
任何提供的建议将不胜感激
解决方案:
将 jest 更新到版本 [email protected] 并将 ts-jest 更新到 [email protected] 后,错误消失了。
我也遇到过同样的情况
我不知道问题/原因是什么 - 但更多可以在 jest 的 github 存储库中看到(也许还有超级测试)。
我降级了我的套餐:
npm i [email protected] [email protected] -D
,之前我有"jest": "^27.5.1",
和"ts-jest": "^27.1.4",
。使用 jest/ts-jest 版本的 26.x.x
我不再面临警告。
我根据此评论进行了降级:https://github.com/facebook/jest/issues/11649#issuecomment-992690198
仅供参考,如果您还在 Express 应用程序上使用
body-parser
,那么存在一个活跃的错误也会导致此问题:https://github.com/ladjs/supertest/issues/772
if (process.env.NODE_ENV !== 'test') {
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`Server started on port ${port}.`);
});
};