blob: ce8aaf48e7fa0e9711d8204ea26b125bce5f64ec [file] [edit]
'use strict';
const common = require('../common');
const child_process = require('child_process');
const assert = require('assert');
// Regression test for https://github.com/nodejs/node/issues/37806:
const proc = child_process.spawn(process.execPath, ['-i']);
proc.on('error', common.mustNotCall());
proc.on('exit', common.mustCall((code) => {
assert.strictEqual(code, 0);
}));
proc.stdin.write('clearImmediate({});\n.exit\n');