We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01284d7 commit 9ba3c3cCopy full SHA for 9ba3c3c
test/e2e.test.mjs
@@ -9,7 +9,7 @@ const NODE_MAJOR_VERSION = parseInt(process.versions.node.split('.')[0], 10);
9
function runTest(...paths) {
10
const file = join(...paths);
11
const args = NODE_MAJOR_VERSION === 22 ? [ '--experimental-async-context-frame', file] : [file];
12
- const result = spawnSync('node', args);
+ const result = spawnSync('node', args, {stdio: 'inherit'});
13
return result;
14
}
15
0 commit comments