From a1fa535016a7b6e68703674e040c6a153c1f2b43 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 27 Aug 2026 00:24:18 +0200 Subject: [PATCH] test: remove `console.log` call in `node_run_list` Signed-off-by: Antoine du Hamel --- test/message/node_run_list.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/message/node_run_list.js b/test/message/node_run_list.js index 24cb5656e285..c4f846e56705 100644 --- a/test/message/node_run_list.js +++ b/test/message/node_run_list.js @@ -4,10 +4,9 @@ require('../common'); const { spawnSyncAndExit } = require('../common/child_process'); const fixtures = require('../common/fixtures'); -const { child } = spawnSyncAndExit( +spawnSyncAndExit( process.execPath, [ '--no-warnings', '--run'], - { cwd: fixtures.path('run-script'), encoding: 'utf8' }, + { cwd: fixtures.path('run-script'), encoding: 'utf8', stdio: ['ignore', 'ignore', 'inherit'] }, { status: 9, signal: null }, ); -console.log(child.stderr);