setup.js 194 B

1234567891011
  1. const crash = (reason) => {
  2. process.on(reason, (err) => {
  3. console.error(reason, err.stack)
  4. process.exit(-1)
  5. })
  6. }
  7. crash('unhandledRejection')
  8. crash('uncaughtError')
  9. crash('warning')