From da396bd5662adcac3ebc60d55cfc1d722b903e38 Mon Sep 17 00:00:00 2001 From: Arya Gummadi Date: Mon, 18 Aug 2025 22:56:46 -0700 Subject: fix: ensure consistent theme behavior between local and CI test runs (#6358) Co-authored-by: Jacob Richman --- integration-tests/globalSetup.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'integration-tests') diff --git a/integration-tests/globalSetup.ts b/integration-tests/globalSetup.ts index 89ca203f..00327a91 100644 --- a/integration-tests/globalSetup.ts +++ b/integration-tests/globalSetup.ts @@ -4,6 +4,11 @@ * SPDX-License-Identifier: Apache-2.0 */ +// Unset NO_COLOR environment variable to ensure consistent theme behavior between local and CI test runs +if (process.env.NO_COLOR !== undefined) { + delete process.env.NO_COLOR; +} + import { mkdir, readdir, rm } from 'fs/promises'; import { join, dirname } from 'path'; import { fileURLToPath } from 'url'; -- cgit v1.2.3