diff --git a/consolereporter.js b/consolereporter.js index 8d87bf5..d5186e5 100644 --- a/consolereporter.js +++ b/consolereporter.js @@ -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')