Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

test: change promises to async/await in test-debugger-backtrace.js #44677

Merged
merged 11 commits into from
Sep 29, 2022
29 changes: 13 additions & 16 deletions test/sequential/test-debugger-backtrace.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,19 @@ const path = require('path');
const script = path.relative(process.cwd(), scriptFullPath);
const cli = startCLI([script]);

function onFatal(error) {
cli.quit();
throw error;
}

return cli.waitForInitialBreak()
.then(() => cli.waitForPrompt())
.then(() => cli.stepCommand('c'))
.then(() => cli.command('bt'))
.then(() => {
async function runTest() {
try {
await cli.waitForInitialBreak();
await cli.waitForPrompt();
await cli.stepCommand('c');
await cli.command('bt');
assert.ok(cli.output.includes(`#0 topFn ${script}:7:2`));
})
.then(() => cli.command('backtrace'))
.then(() => {
await cli.command('backtrace');
assert.ok(cli.output.includes(`#0 topFn ${script}:7:2`));
})
.then(() => cli.quit())
.then(null, onFatal);
} finally {
await cli.quit()
}
}

runTest();
}