You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
380 B

'use strict';
const common = require('../common');
process.on('uncaughtException', function(err) {
console.log('Caught exception: ' + err);
});
setTimeout(common.mustCall(function() {
console.log('This will still run.');
}), 50);
// Intentionally cause an exception, but don't catch it.
nonexistentFunc(); // eslint-disable-line no-undef
common.fail('This will not run.');