mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-19 06:38:45 -05:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
const chalk = require('chalk')
|
|
const beeper = require('beeper')
|
|
|
|
module.exports = function beepAndLog (err) {
|
|
beeper(1)
|
|
|
|
/* eslint-disable no-console */
|
|
console.error(chalk.red(err.stack))
|
|
}
|