blob: 6878135ce4d6d3371160169d1c42f23a5db40327 (
plain)
1
2
3
4
5
6
7
8
9
|
'use strict';
require('../common');
const assert = require('assert');
process.on('beforeExit', function() {
assert(false, 'exit should not allow this to occur');
});
process.exit();
|