[master] fix open terminal on debug test

This commit is contained in:
Poletansky Viktor 2024-11-13 21:57:51 +03:00
Родитель a5f8780fe9
Коммит e8df2730c3
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -301,7 +301,9 @@ export async function debugTestAtCursor(
};
lastDebugConfig = debugConfig;
lastDebugWorkspaceFolder = workspaceFolder;
if (vscode.workspace.getConfiguration().get('debug.internalConsoleOptions') !== 'neverOpen') {
vscode.commands.executeCommand('workbench.debug.action.focusRepl');
}
return await vscode.debug.startDebugging(workspaceFolder, debugConfig);
}