Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2022-11-16
/
.
/
test
/
parallel
/
test-timers-immediate-unref-nested-once.js
blob: 00efce9bcbc8d32f7f755de53bc9277a66027b28 [
file
] [
edit
]
'use strict'
;
const
common
=
require
(
'../common'
);
// This immediate should not execute as it was unrefed
// and nothing else is keeping the event loop alive
setImmediate
(()
=>
{
setImmediate
(
common
.
mustNotCall
()).
unref
();
});