From 1eee01cd934c98c5905b485d4195c99805b57765 Mon Sep 17 00:00:00 2001 From: Giovanni Date: Sun, 25 Aug 2024 16:47:25 +0200 Subject: [PATCH] test: ignore colors in `test-runner-run` Fixes: https://github.com/nodejs/node/issues/54551 --- test/parallel/test-runner-run.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/parallel/test-runner-run.mjs b/test/parallel/test-runner-run.mjs index 7a575da9c95275..1c7fa52f709d9f 100644 --- a/test/parallel/test-runner-run.mjs +++ b/test/parallel/test-runner-run.mjs @@ -7,6 +7,8 @@ import assert from 'node:assert'; const testFixtures = fixtures.path('test-runner'); +process.env.NODE_DISABLE_COLORS = '1'; + describe('require(\'node:test\').run', { concurrency: true }, () => { it('should run with no tests', async () => { const stream = run({ files: [] });