Just starting to work on some node app using jest for testing. express-generator
used for scaffolding.
On first test I get following error:
Jest has detected the following 3 open handles potentially keeping Jest from exiting
Steps to reproduce:
git clone git@github.com:gandra/node-jest-err-demo.git
cd node-jest-err-demo
npm install
cp .env.example .env
npm run test
npx envinfo --preset jest
output:
npx: installed 1 in 1.896s
System:
OS: macOS High Sierra 10.13.4
CPU: x64 Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz Binaries:
Node: 9.3.0 - /usr/local/bin/node
Yarn: 1.5.1 - /usr/local/bin/yarn
npm: 5.7.1 - /usr/local/bin/npm npmPackages:
jest: ^23.1.0 => 23.1.0
Any idea how to fix it?
Here is related issue on github: https://github.com/facebook/jest/issues/6446