The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
var assert = require('assert');
|
|
|
|
// recursively calling .exit() should not overflow the call stack
|
|
var nexits = 0;
|
|
|
|
process.on('exit', function(code) {
|
|
assert.equal(nexits++, 0);
|
|
assert.equal(code, 1);
|
|
|
|
// now override the exit code of 1 with 0 so that the test passes
|
|
process.exit(0);
|
|
});
|
|
|
|
process.exit(1);
|