Skip to content

Commit ed33958

Browse files
pmarchinitargos
authored andcommitted
test: lazy-load internalTTy
PR-URL: #59517 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
1 parent 99da7fb commit ed33958

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-runner-output.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import { describe, it } from 'node:test';
66
import { hostname } from 'node:os';
77
import { chdir, cwd } from 'node:process';
88
import { fileURLToPath } from 'node:url';
9-
import internalTTy from 'internal/tty';
109

1110
const skipForceColors =
1211
process.config.variables.icu_gyp_path !== 'tools/icu/icu-generic.gyp' ||
1312
process.config.variables.node_shared_openssl;
1413

15-
const canColorize = internalTTy.getColorDepth() > 2;
14+
// We're using dynamic import here to not break `NODE_REGENERATE_SNAPSHOTS`.
15+
const canColorize = (await import('internal/tty')).default.getColorDepth() > 2;
1616
const skipCoverageColors = !canColorize;
1717

1818
function replaceTestDuration(str) {

0 commit comments

Comments
 (0)