summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-before-exit.js
blob: 01590de0fcf84452b19f24029b49cc5dd501f0d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';
require('../common');
const assert = require('assert');

var N = 5;
var n = 0;

function f() {
  if (++n < N) setTimeout(f, 5);
}
process.on('beforeExit', f);
process.on('exit', function() {
  assert.equal(n, N + 1);  // The sixth time we let it through.
});