summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-cli-eval.js
blob: 6069a20957bd25895468142db7661dd0f4a03aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'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/27575:
// module.id === '<repl>' in the REPL.

for (const extraFlags of [[], ['-e', '42']]) {
  const flags = ['--interactive', ...extraFlags];
  const proc = child_process.spawn(process.execPath, flags, {
    stdio: ['pipe', 'pipe', 'inherit']
  });
  proc.stdin.write('module.id\n.exit\n');

  let stdout = '';
  proc.stdout.setEncoding('utf8');
  proc.stdout.on('data', (chunk) => stdout += chunk);
  proc.stdout.on('end', common.mustCall(() => {
    assert(stdout.includes('<repl>'), `stdout: ${stdout}`);
  }));
}