mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
e48df8d64b
Refs: https://github.com/nodejs/node/pull/51560 PR-URL: https://github.com/nodejs/node/pull/54827 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
// This tests esm loader's internal worker will not be blocked by --inspect-wait.
|
|
// Regression: https://github.com/nodejs/node/issues/53681
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const assert = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const { NodeInstance } = require('../common/inspector-helper.js');
|
|
|
|
async function runTest() {
|
|
const main = fixtures.path('es-module-loaders', 'register-loader.mjs');
|
|
const child = new NodeInstance(['--inspect-wait=0'], '', main);
|
|
|
|
const session = await child.connectInspectorSession();
|
|
await session.send({ method: 'NodeRuntime.enable' });
|
|
await session.waitForNotification('NodeRuntime.waitingForDebugger');
|
|
await session.send([
|
|
{ 'method': 'Runtime.enable' },
|
|
{ 'method': 'Debugger.enable' },
|
|
{ 'method': 'Runtime.runIfWaitingForDebugger' },
|
|
]);
|
|
await session.send({ method: 'NodeRuntime.disable' });
|
|
await session.waitForDisconnect();
|
|
assert.strictEqual((await child.expectShutdown()).exitCode, 0);
|
|
}
|
|
|
|
runTest();
|