Skip to content

Commit 9db46b5

Browse files
lpincatargos
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 <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 95b55c3 commit 9db46b5

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

Lines changed: 1 addition & 1 deletion
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)