笑话+超级测试|Jest检测打开的句柄

mepcadol  于 2022-12-08  发布在  Jest
关注(0)|答案(2)|浏览(174)

我试图在运行我的测试时摆脱Jest消息“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,但这不是一个合适的解决方案,它实际上一直在打印消息。
任何提供的建议都将不胜感激

oxalkeyp

oxalkeyp1#

看起来这个问题已经在最近的更新中得到了修复,升级到jest@29.2.1ts-jest@29.0.3为我解决了这个问题。

s3fp2yjn

s3fp2yjn2#

我也遇到了同样的情况。
我不知道问题/原因是什么--但是在github的jest(也许还有supertest)库中可以看到更多。
我降级了我的软件包:npm i jest@26.6.3 ts-jest@26.5.6 -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

相关问题