summaryrefslogtreecommitdiff
path: root/test/simple/test-exception-handler.js
blob: 957e038d092ddc2bd4283fb9efa8ea4d37318877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require("../common");

var MESSAGE = 'catch me if you can';
var caughtException = false;

process.addListener('uncaughtException', function (e) {
  console.log("uncaught exception! 1");
  assert.equal(MESSAGE, e.message);
  caughtException = true;
});

process.addListener('uncaughtException', function (e) {
  console.log("uncaught exception! 2");
  assert.equal(MESSAGE, e.message);
  caughtException = true;
});

setTimeout(function() {
  throw new Error(MESSAGE);
}, 10);

process.addListener("exit", function () {
  console.log("exit");
  assert.equal(true, caughtException);
});