mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
9 lines
186 B
JavaScript
9 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();
|