Co-Authored-By: Alejandro Espa <98526766+vespa7@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/60669 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Jordan Harband <ljharb@gmail.com>
14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
'use strict';
|
|
require('../../../common');
|
|
const fixtures = require('../../../common/fixtures');
|
|
const spawn = require('node:child_process').spawn;
|
|
|
|
spawn(
|
|
process.execPath,
|
|
[
|
|
'--no-warnings',
|
|
'--test-reporter', 'dot',
|
|
fixtures.path('test-runner/output/output.js'),
|
|
],
|
|
{ stdio: 'inherit' },
|
|
);
|