Closed
Description
Version
v18.7.0
Platform
Darwin Joshs-MBP-2 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:22 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T6000 arm64
Subsystem
Test Runner
What steps will reproduce the bug?
import test from 'node:test';
test('error', () => {
throw new Error('outer', {cause: new Error('inner')});
});
How often does it reproduce? Is there a required condition?
Unconditional
What is the expected behavior?
Getting cause
output such as:
file:///private/tmp/test-error-cause-test/lib.mjs:1
throw new Error('outer', {cause: new Error('inner')});
^
Error: outer
at file:///private/tmp/test-error-cause-test/lib.mjs:1:7
at ModuleJob.run (node:internal/modules/esm/module_job:193:25)
... 3 lines matching cause stack trace ...
at async handleMainPromise (node:internal/modules/run_main:65:12) {
[cause]: Error: inner
at file:///private/tmp/test-error-cause-test/lib.mjs:1:34
at ModuleJob.run (node:internal/modules/esm/module_job:193:25)
at async Promise.all (index 0)
at async ESMLoader.import (node:internal/modules/esm/loader:541:24)
at async loadESM (node:internal/process/esm_loader:91:5)
at async handleMainPromise (node:internal/modules/run_main:65:12)
}
Node.js v18.7.0
What do you see instead?
(partial TAP output)
failureType: 'testCodeFailure'
error: 'outer'
code: 'ERR_TEST_FAILURE'
stack: |-
TestContext.<anonymous> (file:///private/tmp/test-error-cause-test/cli.mjs:4:8)
Test.runInAsyncScope (node:async_hooks:203:9)
Test.run (node:internal/test_runner/test:417:25)
Test.start (node:internal/test_runner/test:367:17)
Test.test (node:internal/test_runner/harness:149:18)
file:///private/tmp/test-error-cause-test/cli.mjs:3:1
ModuleJob.run (node:internal/modules/esm/module_job:193:25)
async Promise.all (index 0)
async ESMLoader.import (node:internal/modules/esm/loader:541:24)
async loadESM (node:internal/process/esm_loader:91:5)
...
Additional information
The cause
parameter is essential in understanding e.g. undici
's (Node.js's "native" fetch()
implementation) error messages as otherwise you just get a cryptic fetch failed
error message. This is a huge pain point in trying to adopt the test runner for a new project.