mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 00:19:11 -05:00
10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
const globalExceptionHandler = async (err) => {
|
|
await require('./errors').logException(err)
|
|
process.exit(1)
|
|
}
|
|
|
|
process.removeAllListeners('unhandledRejection')
|
|
process.once('unhandledRejection', globalExceptionHandler)
|
|
process.removeAllListeners('uncaughtException')
|
|
process.once('uncaughtException', globalExceptionHandler)
|