mirror of https://github.com/lukechilds/node.git
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.
22 lines
476 B
22 lines
476 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
process.on('uncaughtException', function(err) {
|
|
console.log('Caught exception: ' + err);
|
|
});
|
|
|
|
var timeoutFired = false;
|
|
setTimeout(function() {
|
|
console.log('This will still run.');
|
|
timeoutFired = true;
|
|
}, 500);
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(timeoutFired);
|
|
});
|
|
|
|
// Intentionally cause an exception, but don't catch it.
|
|
nonexistentFunc();
|
|
console.log('This will not run.');
|
|
|
|
|