From 9f2890ce324e71782e7b5dca6fc5fdd89cd2aa08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Matte?= Date: Fri, 30 Dec 2022 13:44:56 -0500 Subject: [PATCH] Seperate label from value --- reporter/totalreporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)}%`)}` } }