mirror of https://github.com/lukechilds/node.git
Browse Source
The list is defunct at this point.
I believe this to be in effect a minor defect from
3eecdf9f14
PR-URL: https://github.com/nodejs/node/pull/8422
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Julien Gilli <jgilli@nodejs.org>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
canary-base
Jeremiah Senkpiel
8 years ago
committed by
Ruben Bridgewater
2 changed files with 17 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
'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'); |
Loading…
Reference in new issue