From 2a18a70f1d8ff55bc6320f2b2c375a7c71b4f8c8 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/message/node_run_list.js b/test/message/node_run_list.js index aef49734615d..33622e8f35fd 100644 --- a/test/message/node_run_list.js +++ b/test/message/node_run_list.js @@ -8,7 +8,6 @@ const fixtures = require('../common/fixtures'); const child = childProcess.spawnSync( process.execPath, [ '--no-warnings', '--run'], - { cwd: fixtures.path('run-script'), encoding: 'utf8' }, + { cwd: fixtures.path('run-script'), encoding: 'utf8', stdio: ['ignore', 'ignore', 'inherit'] }, ); assert.strictEqual(child.status, 9); -console.log(child.stderr);