I want to use https://www.npmjs.com/package/chalk for console logs.
Now if I use with console.log it works
console.log(chalk.blue("Hello World"))
but when I run it with cy.task it doesn't give any error but doesn't show any coloring
cy.task('log', chalk.blue("Hello World")); it prints Hello World but not in blue color
What am I doing wrong?
The Cypress
cy.task()command is an interprocess communication (browser to nodejs) and it must serialize it's parameters.I guess, from the result of your test, that means the ansi chars used to color the log entry might be stripped away.
One way to get around that is to invoke
chalkinside the task.Since
chalkv5 is pure ESM, I had to convert thecypress.config.jsto the ESM format given for typescript on this page Configuration File and add"type": "module",to the package.json, although the docs say you could also use themjsextension.This is the test
This is the output