From 570cf39b0e88d898a043621f08365ad2ee6563db Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Wed, 18 Dec 2024 10:26:38 +1100 Subject: [PATCH] Fixes --- src/test/datascience/widgets/commUtils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/datascience/widgets/commUtils.ts b/src/test/datascience/widgets/commUtils.ts index 8eadf6a8e29..75dbff10c4b 100644 --- a/src/test/datascience/widgets/commUtils.ts +++ b/src/test/datascience/widgets/commUtils.ts @@ -127,7 +127,7 @@ export class Utils { export async function hideOutputPanel() { // Work around for the removal of the command `workbench.action.closePanel`. - await commands.executeCommand('workbench.action.terminal.killAll'); - // await commands.executeCommand('workbench.action.terminal.new'); - // await commands.executeCommand('workbench.action.togglePanel'); + // await commands.executeCommand('workbench.action.terminal.killAll'); + await commands.executeCommand('workbench.action.problems.focus'); + await commands.executeCommand('workbench.action.togglePanel'); }