Skip to content

Commit f76e940

Browse files
zcstarrshanejonas
andauthored
fix(console reporter): consistent spacing
Co-Authored-By: shanejonas <[email protected]>
1 parent 800d45e commit f76e940

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reporters/console.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default (callResults: any[]) => {
88
callResults.forEach((call) => {
99
if (call.error) {
1010
metrics.errors++;
11-
console.log(colors.red.underline('Error:'), colors.cyan(call.method));
11+
console.log(colors.red.underline('Error: '), colors.cyan(call.method));
1212
console.log(call.error);
1313
console.log(call.params);
1414
} else {
@@ -20,4 +20,4 @@ export default (callResults: any[]) => {
2020
console.log('Success: ', colors.green(metrics.success.toString()));
2121
console.log('Errors: ', colors.red(metrics.errors.toString()));
2222
console.log('==========');
23-
};
23+
};

0 commit comments

Comments
 (0)