node/test/parallel/test-next-tick-when-exiting.js
Shailesh Shekhawat 8055bdbbc9
test: show actual error in next-tick-when-exiting
On process exit if some assertion error occurs value of
`process._exiting` was hidden, this fix will show the actual
error message with value.

PR-URL: https://github.com/nodejs/node/pull/20956
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
2018-06-01 11:05:51 +02:00

15 lines
274 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
process.on('exit', () => {
assert.strictEqual(process._exiting, true);
process.nextTick(
common.mustNotCall('process is exiting, should not be called')
);
});
process.exit();