Skip to content

Commit 7c00c13

Browse files
author
Thomas
committed
Added support for --no-color flag in verbose and mini reporters
1 parent a380fe4 commit 7c00c13

File tree

5 files changed

+74
-4
lines changed

5 files changed

+74
-4
lines changed

lib/cli.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ exports.run = () => {
3838
--verbose, -v Enable verbose output
3939
--no-cache Disable the transpiler cache
4040
--no-power-assert Disable Power Assert
41+
--no-color Disable color output
4142
--match, -m Only run tests with matching title (Can be repeated)
4243
--watch, -w Re-run tests when tests and source files change
4344
--source, -S Pattern to match source files so tests can be re-run (Can be repeated)
@@ -124,9 +125,14 @@ exports.run = () => {
124125
if (cli.flags.tap && !cli.flags.watch) {
125126
reporter = tapReporter();
126127
} else if (cli.flags.verbose || isCi) {
127-
reporter = verboseReporter();
128+
reporter = verboseReporter({
129+
disableColors: cli.flags.color !== undefined
130+
});
128131
} else {
129-
reporter = miniReporter({watching: cli.flags.watch});
132+
reporter = miniReporter({
133+
watching: cli.flags.watch,
134+
disableColors: cli.flags.color !== undefined
135+
});
130136
}
131137

132138
reporter.api = api;

lib/reporters/mini.js

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ function MiniReporter(options) {
2828

2929
this.options = Object.assign({}, options);
3030

31+
if (this.options.disableColors) {
32+
chalk.enabled = false;
33+
Object.keys(colors).forEach(function (key) {
34+
colors[key].enabled = false;
35+
});
36+
}
37+
3138
this.reset();
3239
this.stream = process.stderr;
3340
this.stringDecoder = new StringDecoder();

lib/reporters/verbose.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,18 @@ Object.keys(colors).forEach(function (key) {
1010
colors[key].enabled = true;
1111
});
1212

13-
function VerboseReporter() {
13+
function VerboseReporter(options) {
1414
if (!(this instanceof VerboseReporter)) {
15-
return new VerboseReporter();
15+
return new VerboseReporter(options);
16+
}
17+
18+
this.options = Object.assign({}, options);
19+
20+
if (this.options.disableColors) {
21+
chalk.enabled = false;
22+
Object.keys(colors).forEach(function (key) {
23+
colors[key].enabled = false;
24+
});
1625
}
1726
}
1827

test/reporters/mini.js

+23
Original file line numberDiff line numberDiff line change
@@ -643,3 +643,26 @@ test('results when hasExclusive is enabled, but there are multiple remaining tes
643643
t.end();
644644
});
645645

646+
test('Result when no-color flag is set', function (t) {
647+
var reporter = miniReporter({
648+
disableColors: true
649+
});
650+
651+
var runStatus = {
652+
hasExclusive: true,
653+
testCount: 3,
654+
passCount: 1,
655+
failCount: 0,
656+
remainingCount: 2
657+
};
658+
659+
var output = reporter.finish(runStatus);
660+
var expectedOutput = [
661+
'',
662+
'',
663+
' The .only() modifier is used in some tests. 2 tests were not run',
664+
'\n'
665+
].join('\n');
666+
t.is(output, expectedOutput);
667+
t.end();
668+
});

test/reporters/verbose.js

+25
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,31 @@ test('results when hasExclusive is enabled, but there are multiple remaining tes
530530
t.end();
531531
});
532532

533+
test('Result when no-color flag is set', function (t) {
534+
var reporter = verboseReporter({
535+
disableColors: true
536+
});
537+
var runStatus = createRunStatus();
538+
runStatus.hasExclusive = true;
539+
runStatus.testCount = 3;
540+
runStatus.passCount = 1;
541+
runStatus.failCount = 0;
542+
runStatus.remainingCount = 2;
543+
544+
var output = reporter.finish(runStatus);
545+
var expectedOutput = [
546+
'',
547+
' 1 test passed [17:19:12]',
548+
'',
549+
'',
550+
' The .only() modifier is used in some tests. 2 tests were not run',
551+
''
552+
].join('\n');
553+
554+
t.is(output, expectedOutput);
555+
t.end();
556+
});
557+
533558
function fooFunc() {
534559
barFunc();
535560
}

0 commit comments

Comments
 (0)