summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-unrefed-in-beforeexit.js
blob: 530d97674d8bf7625d965666d6a47a3f4830ea2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';

require('../common');
const assert = require('assert');

let once = 0;

process.on('beforeExit', () => {
  if (once > 1)
    throw new RangeError('beforeExit should only have been called once!');

  setTimeout(() => {}, 1).unref();
  once++;
});

process.on('exit', (code) => {
  if (code !== 0) return;

  assert.strictEqual(once, 1);
});