Files
Kmake/test/fixtures/uncaught-exceptions/uncaught-monitor1.js
2026-05-26 23:36:42 -07:00

11 lines
203 B
JavaScript

'use strict';
// Keep the event loop alive.
setTimeout(() => {}, 1e6);
process.on('uncaughtExceptionMonitor', (err) => {
console.log(`Monitored: ${err.message}`);
});
throw new Error('Shall exit');