diff --git a/reporter/totalreporter.js b/reporter/totalreporter.js index 5cd9923..fd276e5 100644 --- a/reporter/totalreporter.js +++ b/reporter/totalreporter.js @@ -10,7 +10,7 @@ const totalreporter = () => { msg: () => `${chalk.redBright(`Fail: ${fail}`)} ${chalk.greenBright(`Sucess: ${success}`)} ${chalk.blueBright(`Skip: ${skip}`)} -${chalk.yellowBright(`Ratio ${(success / (success + fail) * 100).toFixed(0)}%`)}` +${chalk.yellowBright(`Ratio: ${(success / (success + fail) * 100).toFixed(0)}%`)}` } }