forked from LeenkxTeam/Kmake
15 lines
622 B
JavaScript
15 lines
622 B
JavaScript
'use strict';
|
|
require('../../../common');
|
|
const fixtures = require('../../../common/fixtures');
|
|
const spawn = require('node:child_process').spawn;
|
|
|
|
const child = spawn(process.execPath,
|
|
[
|
|
'--no-warnings', '--test', '--test-reporter', 'spec',
|
|
fixtures.path('test-runner/output/output.js'),
|
|
],
|
|
{ stdio: 'pipe' });
|
|
// eslint-disable-next-line no-control-regex
|
|
child.stdout.on('data', (d) => process.stdout.write(d.toString().replace(/[^\x00-\x7F]/g, '').replace(/\u001b\[\d+m/g, '')));
|
|
child.stderr.pipe(process.stderr);
|