We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd66f56 commit 5835d42Copy full SHA for 5835d42
extensions/vscode-api-tests/src/singlefolder-tests/debug.test.ts
@@ -73,7 +73,7 @@ suite('Debug', function () {
73
const initializedPromise = new Promise<void>(resolve => initializedReceived = resolve);
74
const configurationDonePromise = new Promise<void>(resolve => configurationDoneReceived = resolve);
75
// Do not await debug start to return due to https://github.com/microsoft/vscode/issues/90134
76
- commands.executeCommand('workbench.action.debug.start');
+ debug.startDebugging(workspace.workspaceFolders![0], 'Launch debug.js');
77
await capabilitiesPromise;
78
await initializedPromise;
79
await configurationDonePromise;
0 commit comments