We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800d45e commit f76e940Copy full SHA for f76e940
src/reporters/console.ts
@@ -8,7 +8,7 @@ export default (callResults: any[]) => {
8
callResults.forEach((call) => {
9
if (call.error) {
10
metrics.errors++;
11
- console.log(colors.red.underline('Error:'), colors.cyan(call.method));
+ console.log(colors.red.underline('Error: '), colors.cyan(call.method));
12
console.log(call.error);
13
console.log(call.params);
14
} else {
@@ -20,4 +20,4 @@ export default (callResults: any[]) => {
20
console.log('Success: ', colors.green(metrics.success.toString()));
21
console.log('Errors: ', colors.red(metrics.errors.toString()));
22
console.log('==========');
23
-};
+};
0 commit comments