diff options
Diffstat (limited to 'integration-tests')
| -rw-r--r-- | integration-tests/globalSetup.ts | 5 |
1 files changed, 5 insertions, 0 deletions
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'; |
