node/test/fixtures/test-runner/output/dot_reporter.js
Jacob Smith 538aebfa5d
test_runner: support expecting a test-case to fail
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>
2026-01-15 22:55:01 +01:00

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' },
);