summaryrefslogtreecommitdiff
path: root/test/parallel/test-worker-exit-from-uncaught-exception.js
blob: b9f8aeee97d3fea475ec3313096e96a931e0a175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common');
const assert = require('assert');
const { Worker } = require('worker_threads');

// Check that `process.exit()` can be called inside a Worker from an uncaught
// exception handler.

// Do not use isMainThread so that this test itself can be run inside a Worker.
if (!process.env.HAS_STARTED_WORKER) {
  process.env.HAS_STARTED_WORKER = 1;
  const w = new Worker(__filename);
  w.on('exit', common.mustCall((code) => {
    assert.strictEqual(code, 42);
  }));
  return;
}

process.on('uncaughtException', () => {
  process.exit(42);
});

throw new Error();