From f249cc6eb110ad6bb78ca1f2b183d4b1f9289252 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 1 Oct 2025 11:08:55 -0400 Subject: [PATCH] test: avoid forcing color on Windows Forcing the the use of color in the console can lead to inconsistent behavior between platforms and result in potentially confusing output on terminals that do not support color. --- scripts/windows-testing/parallel-executor.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows-testing/parallel-executor.mjs b/scripts/windows-testing/parallel-executor.mjs index 1f62bf03cca1..50660cff22df 100644 --- a/scripts/windows-testing/parallel-executor.mjs +++ b/scripts/windows-testing/parallel-executor.mjs @@ -30,7 +30,7 @@ async function main() { PATH: process.env.PATH, E2E_SHARD_TOTAL: process.env.E2E_SHARD_TOTAL, E2E_SHARD_INDEX: process.env.E2E_SHARD_INDEX, - FORCE_COLOR: '3', + FORCE_COLOR: '0', // Needed by `rules_js` BAZEL_BINDIR: '.', // Needed to run the E2E in a different temp path.