From 7830b4a4605913cb82d35900743f28c4a04b71db Mon Sep 17 00:00:00 2001 From: Sokratis Vidros Date: Mon, 7 Oct 2024 17:58:09 +0300 Subject: [PATCH] fix(web): Fix failing e2e --- apps/web/tests/integrations-list-page.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tests/integrations-list-page.spec.ts b/apps/web/tests/integrations-list-page.spec.ts index 2d5b62135c6..be698f646a7 100644 --- a/apps/web/tests/integrations-list-page.spec.ts +++ b/apps/web/tests/integrations-list-page.spec.ts @@ -726,7 +726,7 @@ test('should update the mailjet integration', async ({ page }) => { await expect(updateButton).toBeEnabled(); await updateButton.click(); - await expect(updateButton).toBeEnabled(); + await expect(updateButton).toBeDisabled(); const sidebarClose = page.getByTestId('sidebar-close'); await sidebarClose.click();