summaryrefslogtreecommitdiff
path: root/test/parallel/test-beforeexit-event-exit.js
blob: bd6162a46804bf41ae0c7f8f209e365d271454b5 (plain)
1
2
3
4
5
6
7
8
'use strict';
const common = require('../common');

process.on('beforeExit', function() {
  common.fail('exit should not allow this to occur');
});

process.exit();