mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-18 13:10:51 -06:00
6 lines
185 B
CoffeeScript
6 lines
185 B
CoffeeScript
chalk = require("chalk")
|
|
|
|
module.exports = (msg, color = "yellow") ->
|
|
return if process.env["NODE_ENV"] is "test"
|
|
|
|
console.log chalk[color](msg), chalk.bgWhite(chalk.black(@osName)) |