11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst cp = require('child_process'); 51cb0ef41Sopenharmony_ciconst child = cp.spawn(process.execPath, ['-i']); 61cb0ef41Sopenharmony_cilet output = ''; 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_cichild.stdout.setEncoding('utf8'); 91cb0ef41Sopenharmony_cichild.stdout.on('data', (data) => { 101cb0ef41Sopenharmony_ci output += data; 111cb0ef41Sopenharmony_ci}); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_cichild.on('exit', common.mustCall(() => { 141cb0ef41Sopenharmony_ci const results = output.replace(/^> /mg, '').split('\n').slice(2); 151cb0ef41Sopenharmony_ci assert.deepStrictEqual( 161cb0ef41Sopenharmony_ci results, 171cb0ef41Sopenharmony_ci [ 181cb0ef41Sopenharmony_ci '[ 42, 23 ]', 191cb0ef41Sopenharmony_ci '1', 201cb0ef41Sopenharmony_ci '[ 42, ... 1 more item ]', 211cb0ef41Sopenharmony_ci '', 221cb0ef41Sopenharmony_ci ] 231cb0ef41Sopenharmony_ci ); 241cb0ef41Sopenharmony_ci})); 251cb0ef41Sopenharmony_ci 261cb0ef41Sopenharmony_cichild.stdin.write('[ 42, 23 ]\n'); 271cb0ef41Sopenharmony_cichild.stdin.write('util.inspect.replDefaults.maxArrayLength = 1\n'); 281cb0ef41Sopenharmony_cichild.stdin.write('[ 42, 23 ]\n'); 291cb0ef41Sopenharmony_cichild.stdin.end(); 30