Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-process-before-exit.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48639c249ddec1fd69b3594c70be7989fd990f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var assert = require('assert');
var common = require('../common');

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.
});