mirror of
https://github.com/zebrajr/node.git
synced 2025-12-07 00:20:38 +01:00
PR-URL: https://github.com/nodejs/node/pull/59964 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
8 lines
284 B
JavaScript
8 lines
284 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const { startNewREPLServer } = require('../common/repl');
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/6802
|
|
const { input } = startNewREPLServer({ useGlobal: true }, { disableDomainErrorAssert: true });
|
|
input.run(['let process']);
|