no longer needed after #48915 fix PR-URL: https://github.com/nodejs/node/pull/48989 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
8 lines
356 B
JavaScript
8 lines
356 B
JavaScript
'use strict';
|
|
require('../../../common');
|
|
const fixtures = require('../../../common/fixtures');
|
|
const spawn = require('node:child_process').spawn;
|
|
|
|
spawn(process.execPath,
|
|
['--no-warnings', '--test', '--test-reporter', 'tap', fixtures.path('test-runner/output/output.js'), fixtures.path('test-runner/output/single.js')],
|
|
{ stdio: 'inherit' });
|