The total is now in oneline
parent
c91f4a466b
commit
07f0e2a084
|
@ -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)}%`)}`
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue