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 b770fb8 commit 3e4432bCopy full SHA for 3e4432b
extension/src/goTest.ts
@@ -301,7 +301,9 @@ export async function debugTestAtCursor(
301
};
302
lastDebugConfig = debugConfig;
303
lastDebugWorkspaceFolder = workspaceFolder;
304
- vscode.commands.executeCommand('workbench.debug.action.focusRepl');
+ if (vscode.workspace.getConfiguration().get('debug.internalConsoleOptions') !== 'neverOpen') {
305
+ vscode.commands.executeCommand('workbench.debug.action.focusRepl');
306
+ }
307
return await vscode.debug.startDebugging(workspaceFolder, debugConfig);
308
}
309
0 commit comments