common.fail() was added to paste over issues with assert.fail() function signature. assert.fail() has been updated to accept a single argument so common.fail() is no longer necessary. Backport-PR-URL: https://github.com/nodejs/node/pull/15479 PR-URL: https://github.com/nodejs/node/pull/12293 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
15 lines
414 B
JavaScript
15 lines
414 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
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
|
|
assert.fail('This will not run.');
|