Skip to content

Commit

Permalink
fix(reporters/fancy): extra space for additional
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Apr 15, 2018
1 parent 3da9de7 commit efeab44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reporters/fancy.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class FancyReporter {
}

if (logObj.additional) {
const lines = logObj.additional.split('\n').map(s => ' ' + s).join('\n')
const lines = logObj.additional.split('\n').map(s => ' ' + s).join('\n')
this.stream.write(chalk.grey(lines) + '\n')
}
}
Expand Down

0 comments on commit efeab44

Please sign in to comment.