mirror of https://github.com/nodejs/node.git
27 lines
711 B
JavaScript
27 lines
711 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const { isMainThread } = require('worker_threads');
|
|
|
|
if (!isMainThread) {
|
|
common.skip('This test only works on a main thread');
|
|
}
|
|
|
|
tmpdir.refresh();
|
|
|
|
|
|
let output = spawnSync(process.execPath, [fixtures.path('inspector-open.js')]);
|
|
assert.strictEqual(output.status, 0);
|
|
|
|
output = spawnSync(process.execPath, [fixtures.path('inspector-open.js')], {
|
|
env: { ...process.env, NODE_V8_COVERAGE: tmpdir.path },
|
|
});
|
|
assert.strictEqual(output.status, 0);
|