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 e884612 commit 7bc25b8Copy full SHA for 7bc25b8
SilentReporter.js
@@ -53,7 +53,7 @@ class SilentReporter {
53
this.stdio.log('\n' + testResult.failureMessage);
54
if (testResult.console && this.showWarnings) {
55
testResult.console
56
- .filter(entry => entry.type === 'warn' && entry.message)
+ .filter(entry => ['error', 'warn'].includes(entry.type) && entry.message)
57
.map(entry => entry.message)
58
.forEach(this.stdio.log);
59
}
0 commit comments