Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2021-01-05
/
.
/
test
/
parallel
/
test-timers-unrefed-in-beforeexit.js
blob: a38b55bf45d599959c148c7384e111b286063466 [
file
] [
edit
]
'use strict'
;
const
common
=
require
(
'../common'
);
process
.
on
(
'beforeExit'
,
common
.
mustCall
(()
=>
{
setTimeout
(
common
.
mustNotCall
(),
1
).
unref
();
}));