diff --git a/integration/scripts/logger.ts b/integration/scripts/logger.ts index eba66b3ff9..ca9522a0ba 100644 --- a/integration/scripts/logger.ts +++ b/integration/scripts/logger.ts @@ -2,7 +2,20 @@ import { default as chalk } from 'chalk'; const getRandomChalkColor = () => { - const colors = ['red', 'green', 'yellow', 'blue', 'magenta', 'cyan']; + const colors = [ + 'red', + 'green', + 'yellow', + 'blue', + 'magenta', + 'cyan', + 'redBright', + 'greenBright', + 'yellowBright', + 'blueBright', + 'magentaBright', + 'cyanBright', + ]; return colors[Math.floor(Math.random() * colors.length)]; };