Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5efe4f7

Browse filesBrowse files
joyeecheungaduh95
authored andcommitted
test: add more logs to test-esm-loader-hooks-inspect-wait
This provides a bit more information about where & when the child processes crashes when it crashes / flakes in the CI. PR-URL: #60466 Refs: #54346 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
1 parent 2a57268 commit 5efe4f7
Copy full SHA for 5efe4f7

File tree

Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed
Open diff view settings
Collapse file

‎test/parallel/test-esm-loader-hooks-inspect-wait.js‎

Copy file name to clipboardExpand all lines: test/parallel/test-esm-loader-hooks-inspect-wait.js
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const { NodeInstance } = require('../common/inspector-helper.js');
1212

1313
async function runTest() {
1414
const main = fixtures.path('es-module-loaders', 'register-loader.mjs');
15+
process.env.NODE_DEBUG = 'esm,async_loader_worker';
1516
const child = new NodeInstance(['--inspect-wait=0'], '', main);
1617

1718
const session = await child.connectInspectorSession();
@@ -24,7 +25,11 @@ async function runTest() {
2425
]);
2526
await session.send({ method: 'NodeRuntime.disable' });
2627
await session.waitForDisconnect();
27-
assert.strictEqual((await child.expectShutdown()).exitCode, 0);
28+
const result = await child.expectShutdown();
29+
assert.deepStrictEqual(result, {
30+
exitCode: 0,
31+
signal: null,
32+
});
2833
}
2934

3035
runTest();

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.