Skip to content

Commit 115a7ca

Browse files
lpincaRafaelGSS
authored andcommitted
test: add missing await
Add missing `await` in `test/parallel/test-inspector-async-stack-traces-promise-then.js`. PR-URL: #54828 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
1 parent bf4bf7c commit 115a7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-inspector-async-stack-traces-promise-then.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async function runTests() {
3131
'params': { 'patterns': [] } },
3232
{ 'method': 'Runtime.runIfWaitingForDebugger' },
3333
]);
34-
session.send({ method: 'NodeRuntime.disable' });
34+
await session.send({ method: 'NodeRuntime.disable' });
3535

3636
await session.waitForBreakOnLine(0, '[eval]');
3737
await session.send({ 'method': 'Debugger.resume' });

0 commit comments

Comments
 (0)