Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
fix: add new line before general summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Dec 20, 2021
1 parent e5551df commit 874c40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/peeky-runner/src/reporters/console-fancy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function createConsoleFancyReporter (): Reporter {
testCount,
errorTestCount,
}) => {
consola.log(`${drawBox(`Ran ${fileCount} tests files (${formatDurationToString(duration)})`)}\n`)
consola.log(`\n${drawBox(`Ran ${fileCount} tests files (${formatDurationToString(duration)})`)}\n`)
consola.log(chalk[errorSuiteCount ? 'red' : 'green'](` ${chalk.dim('Suites')} ${chalk.bold(`${suiteCount - errorSuiteCount} / ${suiteCount}`)}\n ${chalk.dim('Tests')} ${chalk.bold(`${testCount - errorTestCount} / ${testCount}`)}\n ${chalk.dim('Errors')} ${chalk.bold(errorTestCount)}\n`))
},
}
Expand Down

0 comments on commit 874c40a

Please sign in to comment.