Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
8e141356ffcdfb2db6628621d2cc4b7db5cb0b55
/
.
/
test
/
parallel
/
test-beforeexit-event-exit.js
blob: 43d213a8f95055fa7838ffc1be3a79dd283b31cb [
file
] [
log
] [
blame
]
'use strict'
;
var
assert
=
require
(
'assert'
);
process
.
on
(
'beforeExit'
,
function
()
{
assert
(
false
,
'exit should not allow this to occur'
);
});
process
.
exit
();