-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Closed
Labels
Description
🐛 Bug Report
In strict unhandled rejections mode (https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode), the stack trace of unhandled rejection is not displayed in the console. This mode is default in Node.js 15.
To Reproduce
Steps to reproduce the behavior:
- Run a test with an unhandled rejection, for example:
test("foo", () => {
Promise.reject(new Error());
expect(1).toBe(1);
});
- The output is:
RUNS ./index.test.js
node:internal/process/promises:218
triggerUncaughtException(err, true /* fromPromise */);
^
[UnhandledPromiseRejection: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason "Error".] {
code: 'ERR_UNHANDLED_REJECTION'
}
Expected behavior
The stack trace is displayed in the console.
Link to repl or repo (highly encouraged)
https://github.com/vkrol/jest-unhandled-rejection-stack-trace
envinfo
System:
OS: Windows 10 10.0.19042
CPU: (8) x64 Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz
Binaries:
Node: 15.1.0 - ~\scoop\apps\nodejs\current\node.EXE
Yarn: 1.22.5 - ~\scoop\apps\yarn\current\Yarn\bin\yarn.CMD
npm: 7.0.8 - ~\scoop\apps\nodejs\current\npm.CMD
npmPackages:
jest: 26.6.3 => 26.6.3
mrtnzlml, doubleswap, pierreyoda, jeconst, sgilliam15 and 47 more