chore(test-runner): force colors in worker processes (#11799)

This commit is contained in:
Pavel Feldman 2022-02-01 17:29:15 -08:00 committed by GitHub
parent a30bc171c5
commit ceb3027bdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -474,7 +474,7 @@ class Worker extends EventEmitter {
this.process = child_process.fork(path.join(__dirname, 'worker.js'), {
detached: false,
env: {
FORCE_COLOR: process.stdout.isTTY ? '1' : '0',
FORCE_COLOR: '1',
DEBUG_COLORS: process.stdout.isTTY ? '1' : '0',
TEST_WORKER_INDEX: String(this.workerIndex),
TEST_PARALLEL_INDEX: String(this.parallelIndex),