Remove numeric summary
parent
d695b88332
commit
64d10c8dfb
|
@ -14,11 +14,8 @@ const consolereporter = () => {
|
|||
log(chalk.redBright('✗ '))
|
||||
},
|
||||
end: (stats) => {
|
||||
const { success, fail, total, testFail } = stats
|
||||
|
||||
log(' ' + chalk.redBright(fail))
|
||||
log(' ' + chalk.greenBright(success))
|
||||
log(' ' + chalk.gray('total:', total) + '\n')
|
||||
const { testFail } = stats
|
||||
log('\n')
|
||||
|
||||
for (const test of testFail) {
|
||||
log('\n' + chalk.redBright(test.name) + '\n')
|
||||
|
|
Loading…
Reference in New Issue