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>
20 lines
602 B
JavaScript
20 lines
602 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const startCLI = require('../common/debugger');
|
|
|
|
const assert = require('assert');
|
|
|
|
const cli = startCLI([fixtures.path('debugger/break.js')]);
|
|
|
|
(async () => {
|
|
await cli.waitForInitialBreak();
|
|
await cli.command('watch()');
|
|
await cli.waitFor(/ERR_INVALID_ARG_TYPE/);
|
|
assert.match(cli.output, /TypeError \[ERR_INVALID_ARG_TYPE\]: The "expression" argument must be of type string\. Received undefined/);
|
|
})()
|
|
.finally(() => cli.quit())
|
|
.then(common.mustCall());
|