mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-31 11:39:48 -06:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
const chalk = require('chalk')
|
|
|
|
module.exports = function (msg, color = 'yellow') {
|
|
if (process.env['NODE_ENV'] === 'test') {
|
|
return
|
|
}
|
|
|
|
return console.log(chalk[color](msg), chalk.bgWhite(chalk.black(this.osName)))
|
|
}
|