test: update `startCLI` to set `--port=0` by default · nodejs/node@82d4175 · GitHub
Skip to content

Commit 82d4175

Browse files
dario-piotrowiczaduh95
authored andcommitted
test: update startCLI to set --port=0 by default
update the `startCLI` debugging testing utility to set by default the port to use to `0` (i.e. a random port) PR-URL: #59042 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 8d869e6 commit 82d4175

35 files changed

Lines changed: 43 additions & 41 deletions

test/common/debugger.js

Lines changed: 7 additions & 3 deletions

test/parallel/test-debugger-address.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function launchTarget(...args) {
5555
try {
5656
const { childProc, host, port } = await launchTarget('--inspect=0', script);
5757
target = childProc;
58-
cli = startCLI([`${host || '127.0.0.1'}:${port}`]);
58+
cli = startCLI([`${host || '127.0.0.1'}:${port}`], [], {}, { randomPort: false });
5959
await cli.waitForPrompt();
6060
await cli.command('sb("alive.js", 3)');
6161
await cli.waitFor(/break/);

test/parallel/test-debugger-auto-resume.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ addLibraryPath(process.env);
2121
};
2222
env.NODE_INSPECT_RESUME_ON_START = '1';
2323

24-
const cli = startCLI(['--port=0', script], [], {
25-
env,
26-
});
24+
const cli = startCLI([script], [], { env });
2725

2826
await cli.waitForInitialBreak();
2927
deepStrictEqual(cli.breakInfo, {

test/parallel/test-debugger-backtrace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const path = require('path');
1313
{
1414
const scriptFullPath = fixtures.path('debugger', 'backtrace.js');
1515
const script = path.relative(process.cwd(), scriptFullPath);
16-
const cli = startCLI(['--port=0', script]);
16+
const cli = startCLI([script]);
1717

1818
async function runTest() {
1919
try {

test/parallel/test-debugger-break.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const path = require('path');
1111

1212
const scriptFullPath = fixtures.path('debugger', 'break.js');
1313
const script = path.relative(process.cwd(), scriptFullPath);
14-
const cli = startCLI(['--port=0', script]);
14+
const cli = startCLI([script]);
1515

1616
(async () => {
1717
await cli.waitForInitialBreak();

test/parallel/test-debugger-breakpoint-exists.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const startCLI = require('../common/debugger');
99

1010
// Test for "Breakpoint at specified location already exists" error.
1111
const script = fixtures.path('debugger', 'three-lines.js');
12-
const cli = startCLI(['--port=0', script]);
12+
const cli = startCLI([script]);
1313

1414
(async () => {
1515
try {

test/parallel/test-debugger-clear-breakpoints.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const path = require('path');
1313
{
1414
const scriptFullPath = fixtures.path('debugger', 'break.js');
1515
const script = path.relative(process.cwd(), scriptFullPath);
16-
const cli = startCLI(['--port=0', script]);
16+
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
1919
cli.quit();

test/parallel/test-debugger-exceptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const path = require('path');
1313
{
1414
const scriptFullPath = fixtures.path('debugger', 'exceptions.js');
1515
const script = path.relative(process.cwd(), scriptFullPath);
16-
const cli = startCLI(['--port=0', script]);
16+
const cli = startCLI([script]);
1717

1818
(async () => {
1919
try {

test/parallel/test-debugger-exec-scope.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import startCLI from '../common/debugger.js';
77

88
import assert from 'assert';
99

10-
const cli = startCLI(['--port=0', path('debugger/backtrace.js')]);
10+
const cli = startCLI([path('debugger/backtrace.js')]);
1111

1212
try {
1313
await cli.waitForInitialBreak();

test/parallel/test-debugger-exec.js

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)