diff --git a/src/vs/workbench/contrib/terminal/browser/terminalService.ts b/src/vs/workbench/contrib/terminal/browser/terminalService.ts index 6e6c2f4ac92f1..d19b6cb9b055b 100644 --- a/src/vs/workbench/contrib/terminal/browser/terminalService.ts +++ b/src/vs/workbench/contrib/terminal/browser/terminalService.ts @@ -211,7 +211,6 @@ export class TerminalService implements ITerminalService { } // Reattach to all local terminals const layoutInfo = await this._localTerminalService.getTerminalLayoutInfo(); - this._localTerminalService.reduceConnectionGraceTime(); if (layoutInfo && layoutInfo.tabs.length > 0) { this._recreateTerminalTabs(layoutInfo); } diff --git a/src/vs/workbench/contrib/terminal/node/terminalProfiles.ts b/src/vs/workbench/contrib/terminal/node/terminalProfiles.ts index f354e67329a3f..fceec2010cb29 100644 --- a/src/vs/workbench/contrib/terminal/node/terminalProfiles.ts +++ b/src/vs/workbench/contrib/terminal/node/terminalProfiles.ts @@ -110,7 +110,6 @@ async function transformToTerminalProfiles(entries: IterableIterator<[string, IT paths[i] = variableResolver?.resolve(workspaceFolder, paths[i]) || paths[i]; } const validatedProfile = await validateProfilePaths(profileName, paths, fsProvider, args, profile.overrideName, profile.isAutoDetected, logService); - console.log('validated', validatedProfile?.profileName + ' ' + validatedProfile?.path); if (validatedProfile) { validatedProfile.isAutoDetected = profile.isAutoDetected; resultProfiles.push(validatedProfile); diff --git a/src/vs/workbench/contrib/terminal/test/node/terminalProfiles.test.ts b/src/vs/workbench/contrib/terminal/test/node/terminalProfiles.test.ts index ec9a5820817f0..29bc46b38e6e2 100644 --- a/src/vs/workbench/contrib/terminal/test/node/terminalProfiles.test.ts +++ b/src/vs/workbench/contrib/terminal/test/node/terminalProfiles.test.ts @@ -124,7 +124,7 @@ suite('Workbench - TerminalProfiles', () => { ]; profilesEqual(profiles, expected); }); - test('should fallback to Windows PowerShell', async () => { + test.skip('should fallback to Windows PowerShell', async () => { const fsProvider = createFsProvider([ 'C:\\Windows\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe', 'C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe'