mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
968 B
38 lines
968 B
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const repl = require('repl');
|
|
|
|
const command = `.load ${fixtures.path('repl-load-multiline.js')}`;
|
|
const terminalCode = '\u001b[1G\u001b[0J \u001b[1G';
|
|
const terminalCodeRegex = new RegExp(terminalCode.replace(/\[/g, '\\['), 'g');
|
|
|
|
const expected = `${command}
|
|
const getLunch = () =>
|
|
placeOrder('tacos')
|
|
.then(eat);
|
|
const placeOrder = (order) => Promise.resolve(order);
|
|
const eat = (food) => '<nom nom nom>';
|
|
|
|
undefined
|
|
`;
|
|
|
|
let accum = '';
|
|
|
|
const inputStream = new common.ArrayStream();
|
|
const outputStream = new common.ArrayStream();
|
|
|
|
outputStream.write = (data) => accum += data.replace('\r', '');
|
|
|
|
const r = repl.start({
|
|
prompt: '',
|
|
input: inputStream,
|
|
output: outputStream,
|
|
terminal: true,
|
|
useColors: false
|
|
});
|
|
|
|
r.write(`${command}\n`);
|
|
assert.strictEqual(accum.replace(terminalCodeRegex, ''), expected);
|
|
r.close();
|
|
|