mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 08:37:07 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
process.on('beforeExit', function() {
|
|
assert(false, 'exit should not allow this to occur');
|
|
});
|
|
|
|
process.exit();
|