test: add mustCall in timers-unrefed-in-callback

PR-URL: https://github.com/nodejs/node/pull/12594
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
This commit is contained in:
Zahidul Islam 2017-04-22 12:28:22 -07:00 committed by Rich Trott
parent 1c834e78ff
commit 3fd890a06e

View File

@ -2,8 +2,7 @@
// Checks that setInterval timers keep running even when they're // Checks that setInterval timers keep running even when they're
// unrefed within their callback. // unrefed within their callback.
require('../common'); const common = require('../common');
const assert = require('assert');
const net = require('net'); const net = require('net');
let counter1 = 0; let counter1 = 0;
@ -28,7 +27,7 @@ function Test1() {
// server only for maintaining event loop // server only for maintaining event loop
const server = net.createServer().listen(0); const server = net.createServer().listen(0);
const timer1 = setInterval(() => { const timer1 = setInterval(common.mustCall(() => {
timer1.unref(); timer1.unref();
if (counter1++ === 3) { if (counter1++ === 3) {
clearInterval(timer1); clearInterval(timer1);
@ -36,7 +35,7 @@ function Test1() {
Test2(); Test2();
}); });
} }
}, 1); }, 4), 1);
} }
@ -54,8 +53,4 @@ function Test2() {
}, 1); }, 1);
} }
process.on('exit', () => {
assert.strictEqual(counter1, 4);
});
Test1(); Test1();