mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
15 lines
493 B
JavaScript
15 lines
493 B
JavaScript
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const timer1 = setTimeout(() => {}, 1).unref();
|
||
|
assert.strictEqual(timer1._handle._list, undefined,
|
||
|
'timer1._handle._list should be undefined');
|
||
|
|
||
|
// Check that everything works even if the handle was not re-used.
|
||
|
setTimeout(() => {}, 1);
|
||
|
const timer2 = setTimeout(() => {}, 1).unref();
|
||
|
assert.strictEqual(timer2._handle._list, undefined,
|
||
|
'timer2._handle._list should be undefined');
|