Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add missing newline
  • Loading branch information
pi0 committed Nov 2, 2018
1 parent 2452511 commit bcaf193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reporters/fancy.js
Expand Up @@ -29,7 +29,7 @@ export default class FancyReporter extends BasicReporter {
const color1 = chalkColor('cyan')
const color2 = chalkColor('grey')

return color2(' at ') + parseStack(stack)
return '\n' + color2(' at ') + parseStack(stack)
.map(line => color1(line.replace(/(\(.*\))/, (m, p1) => color2(p1))))
.join(color2(' ↲\n at '))
}
Expand Down

0 comments on commit bcaf193

Please sign in to comment.