blob: eff96da98e4729870a83ca5e48c524f4b4857d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
'use strict';
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.
});
|