Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 6.6k
Closed
Labels
Description
🐛 Bug Report
The performance global introduced in Node.js 16.0.0 seems unavailable in the test environment.
To Reproduce
On Node 16.0.0 or greater:
mkdir perf &&cd perf npm init -y echo'console.log(performance.now())'> test.js npm install jest npx jestExpected behavior
No error
Actual behavior
FAIL ./test.js ● Test suite failed to run ReferenceError: performance is not defined > 1 | console.log(performance.now()) | ^ 2 | at Object.<anonymous> (test.js:1:1) at TestScheduler.scheduleTests (node_modules/@jest/core/build/TestScheduler.js:333:13) SimonSiefke