From 3b7820ba2e9cb2370f0f13b5c9fd76ab61eabf8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Mon, 18 Nov 2024 14:48:50 +0100 Subject: [PATCH] Remove outdated workaround MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Pupier --- src/ui-test/utils.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ui-test/utils.ts b/src/ui-test/utils.ts index 9775d9a6..5b86672e 100644 --- a/src/ui-test/utils.ts +++ b/src/ui-test/utils.ts @@ -214,8 +214,6 @@ export async function disconnectDebugger(driver: WebDriver, interval = 500): Pro * @returns A Promise that resolves to TerminalView instance. */ export async function activateTerminalView(): Promise { - // workaround ExTester issue - https://github.com/redhat-developer/vscode-extension-tester/issues/785 - await new Workbench().executeCommand('Terminal: Focus on Terminal View'); return await new BottomBarPanel().openTerminalView(); }