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 48c208f commit ac041a2Copy full SHA for ac041a2
lib/internal/test_runner/reporter/dot.js
@@ -18,6 +18,10 @@ module.exports = async function* dot(source) {
18
yield `${colors.red}X${colors.reset}`;
19
ArrayPrototypePush(failedTests, data);
20
}
21
+ if (type === 'test:diagnostic') {
22
+ const levelColor = data.level === 'error' ? colors.red : data.level === 'warning' ? colors.yellow : colors.white;
23
+ yield `\n${levelColor}${data.message}${colors.reset}\n`;
24
+ }
25
if ((type === 'test:fail' || type === 'test:pass') && ++count === columns) {
26
yield '\n';
27
0 commit comments