forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
DebugToolbar
github-actions[bot] edited this page Oct 7, 2024
·
1 revision

// get a handle for existing toolbar (i.e. debug session needs to be in progress)
const bar = await DebugToolbar.create();// continue
await bar.continue();
// pause
await bar.pause();
// step over
await bar.stepOver();
// step into
await bar.stepInto();
// step out
await bar.stepOut();
// restart
await bar.restart();
// stop
await bar.stop();await bar.waitForBreakPoint();