summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-exit.js
blob: 9d48ea9eacfe6f59658cf26f0bb1e2e15cc0ce24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';
require('../common');
const assert = require('assert');

// calling .exit() from within "exit" should not overflow the call stack
var nexits = 0;

process.on('exit', function(code) {
  assert.equal(nexits++, 0);
  assert.equal(code, 0);
  process.exit();
});

// "exit" should be emitted unprovoked