mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 09:23:11 +00:00

Bootstrap per-realm callbacks like `prepare_stack_trace_callback` in the ShadowRealm. This enables stack trace decoration in the ShadowRealm. PR-URL: https://github.com/nodejs/node/pull/47107 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/32648
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const { NodeInstance } = require('../common/inspector-helper.js');
|
|
|
|
async function runTest() {
|
|
const child = new NodeInstance(['--inspect-brk-node=0', '-p', '42']);
|
|
const session = await child.connectInspectorSession();
|
|
await session.send({ method: 'Runtime.enable' });
|
|
await session.send({ method: 'Debugger.enable' });
|
|
await session.send({ method: 'Runtime.runIfWaitingForDebugger' });
|
|
await session.waitForNotification((notification) => {
|
|
// The main assertion here is that we do hit the loader script first.
|
|
return notification.method === 'Debugger.scriptParsed' &&
|
|
notification.params.url === 'node:internal/bootstrap/realm';
|
|
});
|
|
|
|
await session.waitForNotification('Debugger.paused');
|
|
await session.send({ method: 'Debugger.resume' });
|
|
await session.waitForNotification('Debugger.paused');
|
|
await session.runToCompletion();
|
|
}
|
|
|
|
runTest().then(common.mustCall());
|