mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

update the `startCLI` debugging testing utility to set by default the port to use to `0` (i.e. a random port) PR-URL: https://github.com/nodejs/node/pull/59042 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
33 lines
1 KiB
JavaScript
33 lines
1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const startCLI = require('../common/debugger');
|
|
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
|
|
// Using sb before loading file.
|
|
|
|
const scriptFullPath = fixtures.path('debugger', 'cjs', 'index.js');
|
|
const script = path.relative(process.cwd(), scriptFullPath);
|
|
|
|
const otherScriptFullPath = fixtures.path('debugger', 'cjs', 'other.js');
|
|
const otherScript = path.relative(process.cwd(), otherScriptFullPath);
|
|
|
|
const cli = startCLI([script]);
|
|
|
|
(async () => {
|
|
await cli.waitForInitialBreak();
|
|
await cli.waitForPrompt();
|
|
await cli.command('sb("other.js", 2)');
|
|
assert.match(cli.output, /not loaded yet/,
|
|
'warns that the script was not loaded yet');
|
|
await cli.stepCommand('cont');
|
|
assert.ok(cli.output.includes(`break in ${otherScript}:2`),
|
|
'found breakpoint in file that was not loaded yet');
|
|
})()
|
|
.then(common.mustCall())
|
|
.finally(() => cli.quit());
|