From 547aab520ac654212c1774325ffe0342dbbc141e Mon Sep 17 00:00:00 2001 From: Paul Neubauer Date: Wed, 29 Jun 2022 13:27:57 +0200 Subject: [PATCH] Remove wait for focus --- tests/e2e/support/objects/app-files/utils/sidebar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/support/objects/app-files/utils/sidebar.ts b/tests/e2e/support/objects/app-files/utils/sidebar.ts index 3fd4529757b..d783ea3748a 100644 --- a/tests/e2e/support/objects/app-files/utils/sidebar.ts +++ b/tests/e2e/support/objects/app-files/utils/sidebar.ts @@ -51,7 +51,7 @@ export const openPanel = async ({ page, name }: { page: Page; name: string }): P const nextPanel = page.locator(`#sidebar-panel-${name}-item`) await Promise.all([ - locatorUtils.waitForEvent(nextPanel, 'focus'), + // locatorUtils.waitForEvent(nextPanel, 'focus'), locatorUtils.waitForEvent(nextPanel, 'transitionend'), panelSelector.click() ])