diff --git a/reporter/totalreporter.js b/reporter/totalreporter.js index 88277de..f3085d8 100644 --- a/reporter/totalreporter.js +++ b/reporter/totalreporter.js @@ -9,10 +9,7 @@ const totalreporter = () => { success: (test) => { success++ }, fail: (test, e) => { fail++ }, skip: (test) => { skip++ }, - msg: () => `${chalk.redBright(`Fail: ${fail}`)} -${chalk.greenBright(`Sucess: ${success}`)} -${chalk.blueBright(`Skip: ${skip}`)} -${chalk.yellowBright(`Ratio: ${percentage(success, success + fail)}%`)}` + msg: () => `${chalk.redBright(`Fail: ${fail}`)} - ${chalk.greenBright(`Sucess: ${success}`)} - ${chalk.blueBright(`Skip: ${skip}`)} - ${chalk.yellowBright(`Ratio: ${percentage(success, success + fail)}%`)}` } }