This change fixes a regression introduced by commit
0d051238be, which contained a typo that
would cause every unrefd interval to fire only once.
Fixes: https://github.com/joyent/node/issues/8900
Reviewed-By: Timothy J Fontaine <tjfontaine@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
18 lines
354 B
JavaScript
18 lines
354 B
JavaScript
/*
|
|
* This test is a regression test for joyent/node#8900.
|
|
*/
|
|
var assert = require('assert');
|
|
|
|
var N = 5;
|
|
var nbIntervalFired = 0;
|
|
var timer = setInterval(function() {
|
|
++nbIntervalFired;
|
|
if (nbIntervalFired === N)
|
|
clearInterval(timer);
|
|
}, 1);
|
|
|
|
timer.unref();
|
|
|
|
setTimeout(function onTimeout() {
|
|
assert.strictEqual(nbIntervalFired, N);
|
|
}, 100);
|