Skip to content

Commit efeab44

Browse files
author
Pooya Parsa
committed
fix(reporters/fancy): extra space for additional
1 parent 3da9de7 commit efeab44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reporters/fancy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default class FancyReporter {
5555
}
5656

5757
if (logObj.additional) {
58-
const lines = logObj.additional.split('\n').map(s => ' ' + s).join('\n')
58+
const lines = logObj.additional.split('\n').map(s => ' ' + s).join('\n')
5959
this.stream.write(chalk.grey(lines) + '\n')
6060
}
6161
}

0 commit comments

Comments
 (0)