mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
a1b27b25bb
PR-URL: https://github.com/nodejs/node/pull/45712 Fixes: https://github.com/nodejs/node/issues/45648 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
7 lines
247 B
JavaScript
7 lines
247 B
JavaScript
// Flags: --no-warnings
|
|
'use strict';
|
|
require('../common');
|
|
const spawn = require('node:child_process').spawn;
|
|
spawn(process.execPath,
|
|
['--no-warnings', '--test-reporter', 'dot', 'test/message/test_runner_output.js'], { stdio: 'inherit' });
|