Seperate label from value

master
Frédéric Matte 2022-12-30 13:44:56 -05:00
parent 90b20029c9
commit 9f2890ce32
1 changed files with 1 additions and 1 deletions

View File

@ -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)}%`)}`
}
}