11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst assert = require('assert'); 51cb0ef41Sopenharmony_ciconst { spawnSync } = require('child_process'); 61cb0ef41Sopenharmony_ciconst fixtures = require('../common/fixtures'); 71cb0ef41Sopenharmony_ciconst tmpdir = require('../common/tmpdir'); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_cicommon.skipIfInspectorDisabled(); 101cb0ef41Sopenharmony_cicommon.skipIfWorker(); 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_citmpdir.refresh(); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_cilet output = spawnSync(process.execPath, [fixtures.path('inspector-open.js')]); 161cb0ef41Sopenharmony_ciassert.strictEqual(output.status, 0); 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_cioutput = spawnSync(process.execPath, [fixtures.path('inspector-open.js')], { 191cb0ef41Sopenharmony_ci env: { ...process.env, NODE_V8_COVERAGE: tmpdir.path }, 201cb0ef41Sopenharmony_ci}); 211cb0ef41Sopenharmony_ciassert.strictEqual(output.status, 0); 22