Remove numeric summary
parent
d695b88332
commit
64d10c8dfb
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue