Remove numeric summary

master
Frédéric Matte 2022-12-04 16:06:06 -05:00
parent d695b88332
commit 64d10c8dfb
1 changed files with 2 additions and 5 deletions

View File

@ -14,11 +14,8 @@ const consolereporter = () => {
log(chalk.redBright('✗ ')) log(chalk.redBright('✗ '))
}, },
end: (stats) => { end: (stats) => {
const { success, fail, total, testFail } = stats const { testFail } = stats
log('\n')
log(' ' + chalk.redBright(fail))
log(' ' + chalk.greenBright(success))
log(' ' + chalk.gray('total:', total) + '\n')
for (const test of testFail) { for (const test of testFail) {
log('\n' + chalk.redBright(test.name) + '\n') log('\n' + chalk.redBright(test.name) + '\n')