Skip to content

Commit 9f54bab

Browse files
committed
test: fix test runner colored output test
1 parent 431f32e commit 9f54bab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixtures/test-runner/output/arbitrary-output-colored.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ const fixtures = require('../../../common/fixtures');
66

77
(async function run() {
88
const test = fixtures.path('test-runner/output/arbitrary-output-colored-1.js');
9-
await once(spawn(process.execPath, ['--test', test], { stdio: 'inherit', env: { FORCE_COLOR: 1 } }), 'exit');
10-
await once(spawn(process.execPath, ['--test', '--test-reporter', 'tap', test], { stdio: 'inherit', env: { FORCE_COLOR: 1 } }), 'exit');
9+
await once(spawn(process.execPath, ['--test', test], { stdio: 'inherit' }), 'exit');
10+
await once(spawn(process.execPath, ['--test', '--test-reporter', 'tap', test], { stdio: 'inherit' }), 'exit');
1111
})().then(common.mustCall());

0 commit comments

Comments
 (0)