Skip to content

Commit 9ba3c3c

Browse files
committed
get output
1 parent 01284d7 commit 9ba3c3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const NODE_MAJOR_VERSION = parseInt(process.versions.node.split('.')[0], 10);
99
function runTest(...paths) {
1010
const file = join(...paths);
1111
const args = NODE_MAJOR_VERSION === 22 ? [ '--experimental-async-context-frame', file] : [file];
12-
const result = spawnSync('node', args);
12+
const result = spawnSync('node', args, {stdio: 'inherit'});
1313
return result;
1414
}
1515

0 commit comments

Comments
 (0)