Skip to content

Commit e9a3108

Browse files
make stderr inherit
1 parent aefa1cc commit e9a3108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/node-specific/resource_tracking_script_builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export async function runScriptAndGetProcessInfo(
168168
await writeFile(scriptName, scriptContent, { encoding: 'utf8' });
169169
const logFile = name + '.logs.txt';
170170

171-
const script = spawn(process.execPath, [scriptName], { stdio: ['ignore', 'ignore', 'ignore'] });
171+
const script = spawn(process.execPath, [scriptName], { stdio: ['ignore', 'ignore', 'inherit'] });
172172

173173
const willClose = once(script, 'close');
174174

0 commit comments

Comments
 (0)