mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 09:52:26 +00:00

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>
22 lines
682 B
JavaScript
22 lines
682 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
common.skipIfInspectorDisabled();
|
|
const { NodeInstance } = require('../common/inspector-helper.js');
|
|
|
|
async function runTests() {
|
|
const script = 'setInterval(() => {debugger;}, 60000);';
|
|
const node = new NodeInstance('--inspect=0', script);
|
|
// 1 second wait to make sure the inferior began running the script
|
|
await new Promise((resolve) => setTimeout(() => resolve(), 1000));
|
|
const session = await node.connectInspectorSession();
|
|
await session.send([
|
|
{ 'method': 'Debugger.enable' },
|
|
{ 'method': 'Debugger.pause' }
|
|
]);
|
|
session.disconnect();
|
|
node.kill();
|
|
}
|
|
|
|
common.crashOnUnhandledRejection();
|
|
runTests();
|