◐ Shell
clean mode source ↗

test: add more logs to test-esm-loader-hooks-inspect-wait · nodejs/node@5efe4f7

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();