mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 16:34:05 +01:00
9be3d99b2b
The inspector tests should not be in the parallel directory as they likely all (or certainly almost all) use static ports, so port collisions will happen. This moves them all to sequential. We can move them back on a case-by-case basis. They were run sequentially when they were in the inspector directory which they were only moved from very recently. PR-URL: https://github.com/nodejs/node/pull/16281 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
28 lines
800 B
JavaScript
28 lines
800 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
|
|
const mainScript = fixtures.path('loop.js');
|
|
const expected =
|
|
'`node --debug` and `node --debug-brk` are invalid. ' +
|
|
'Please use `node --inspect` or `node --inspect-brk` instead.';
|
|
for (const invalidArg of ['--debug-brk', '--debug']) {
|
|
execFile(
|
|
process.execPath,
|
|
[invalidArg, mainScript],
|
|
common.mustCall((error, stdout, stderr) => {
|
|
assert.strictEqual(error.code, 9, `node ${invalidArg} should exit 9`);
|
|
assert.strictEqual(
|
|
stderr.includes(expected),
|
|
true,
|
|
`${stderr} should include '${expected}'`
|
|
);
|
|
})
|
|
);
|
|
}
|