mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
c6d20a034d
PR-URL: https://github.com/nodejs/node/pull/54512 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
30 lines
736 B
JavaScript
30 lines
736 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const ArrayStream = require('../common/arraystream');
|
|
const assert = require('assert');
|
|
const repl = require('repl');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const inputStream = new ArrayStream();
|
|
const outputStream = new ArrayStream();
|
|
repl.start({
|
|
input: inputStream,
|
|
output: outputStream,
|
|
useGlobal: false,
|
|
terminal: true,
|
|
useColors: true
|
|
});
|
|
|
|
let output = '';
|
|
outputStream.write = (chunk) => output += chunk;
|
|
|
|
for (const char of ['\\n', '\\v', '\\r']) {
|
|
inputStream.emit('data', `"${char}"()`);
|
|
// Make sure the output is on a single line
|
|
assert.strictEqual(output, `"${char}"()\n\x1B[90mTypeError: "\x1B[39m\x1B[9G\x1B[1A`);
|
|
inputStream.run(['']);
|
|
output = '';
|
|
}
|