Files
Kmake/test/fixtures/test-runner/output/junit_reporter.js
2026-05-26 23:36:42 -07:00

12 lines
326 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', 'junit',
fixtures.path('test-runner/output/output.js'),
],
{ stdio: 'inherit' });