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, ['--interactive']); 61cb0ef41Sopenharmony_ciconst fixtures = require('../common/fixtures'); 71cb0ef41Sopenharmony_ciconst fixture = fixtures.path('is-object.js').replace(/\\/g, '/'); 81cb0ef41Sopenharmony_cilet output = ''; 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_cichild.stdout.setEncoding('utf8'); 111cb0ef41Sopenharmony_cichild.stdout.on('data', (data) => { 121cb0ef41Sopenharmony_ci output += data; 131cb0ef41Sopenharmony_ci}); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_cichild.on('exit', common.mustCall(() => { 161cb0ef41Sopenharmony_ci const results = output.replace(/^> /mg, '').split('\n').slice(2); 171cb0ef41Sopenharmony_ci assert.deepStrictEqual(results, ['undefined', 'true', 'true', '']); 181cb0ef41Sopenharmony_ci})); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_cichild.stdin.write('const isObject = (obj) => obj.constructor === Object;\n'); 211cb0ef41Sopenharmony_cichild.stdin.write('isObject({});\n'); 221cb0ef41Sopenharmony_cichild.stdin.write(`require(${JSON.stringify(fixture)}).isObject({});\n`); 231cb0ef41Sopenharmony_cichild.stdin.write('.exit'); 241cb0ef41Sopenharmony_cichild.stdin.end(); 25