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:
parent
1c834e78ff
commit
3fd890a06e
@ -2,8 +2,7 @@
|
||||
// Checks that setInterval timers keep running even when they're
|
||||
// unrefed within their callback.
|
||||
|
||||
require('../common');
|
||||
const assert = require('assert');
|
||||
const common = require('../common');
|
||||
const net = require('net');
|
||||
|
||||
let counter1 = 0;
|
||||
@ -28,7 +27,7 @@ function Test1() {
|
||||
// server only for maintaining event loop
|
||||
const server = net.createServer().listen(0);
|
||||
|
||||
const timer1 = setInterval(() => {
|
||||
const timer1 = setInterval(common.mustCall(() => {
|
||||
timer1.unref();
|
||||
if (counter1++ === 3) {
|
||||
clearInterval(timer1);
|
||||
@ -36,7 +35,7 @@ function Test1() {
|
||||
Test2();
|
||||
});
|
||||
}
|
||||
}, 1);
|
||||
}, 4), 1);
|
||||
}
|
||||
|
||||
|
||||
@ -54,8 +53,4 @@ function Test2() {
|
||||
}, 1);
|
||||
}
|
||||
|
||||
process.on('exit', () => {
|
||||
assert.strictEqual(counter1, 4);
|
||||
});
|
||||
|
||||
Test1();
|
||||
|
Loading…
x
Reference in New Issue
Block a user