Skip to content

Commit 2155f56

Browse files
Trotttargos
authored andcommitted
test: disable colorMode in test-console-group
Disable colorMode in test-console-group so that the test will succeed if run without the test runner from the command line. PR-URL: #30886 Reviewed-By: Shelley Vohr <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 8d8c05d commit 2155f56

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/parallel/test-console-group.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ function setup() {
2323
stderr += data;
2424
});
2525

26-
c = new Console(process.stdout, process.stderr);
26+
c = new Console({ stdout: process.stdout,
27+
stderr: process.stderr,
28+
colorMode: false });
2729
}
2830

2931
function teardown() {

0 commit comments

Comments
 (0)