We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62cdb1 commit 73885f8Copy full SHA for 73885f8
lib/internal/test_runner/reporter/dot.js
@@ -12,10 +12,10 @@ module.exports = async function* dot(source) {
12
const failedTests = [];
13
for await (const { type, data } of source) {
14
if (type === 'test:pass') {
15
- yield '.';
+ yield `${colors.green}.${colors.clear}`;
16
}
17
if (type === 'test:fail') {
18
- yield 'X';
+ yield `${colors.red}X${colors.clear}`;
19
ArrayPrototypePush(failedTests, data);
20
21
if ((type === 'test:fail' || type === 'test:pass') && ++count === columns) {
0 commit comments