21 lines
355 B
JavaScript
21 lines
355 B
JavaScript
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
var once = 0;
|
||
|
|
||
|
process.on('beforeExit', () => {
|
||
|
if (once > 1)
|
||
|
throw new RangeError('beforeExit should only have been called once!');
|
||
|
|
||
|
setTimeout(() => {}, 1).unref();
|
||
|
once++;
|
||
|
});
|
||
|
|
||
|
process.on('exit', (code) => {
|
||
|
if (code !== 0) return;
|
||
|
|
||
|
assert.strictEqual(once, 1);
|
||
|
});
|