From 605928d308acc1bd5a4a79adeb28f10c657c2109 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Thu, 26 Jun 2025 10:51:09 -0300 Subject: [PATCH] fix: updated timeout for blog writer (#8747) Updated timeout for blog writer --- src/frontend/tests/core/integrations/Blog Writer.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/frontend/tests/core/integrations/Blog Writer.spec.ts b/src/frontend/tests/core/integrations/Blog Writer.spec.ts index 84cd97a29..d0c0e62af 100644 --- a/src/frontend/tests/core/integrations/Blog Writer.spec.ts +++ b/src/frontend/tests/core/integrations/Blog Writer.spec.ts @@ -47,7 +47,9 @@ withEventDeliveryModes( await page.getByTestId("button_run_chat output").click(); - await page.waitForSelector("text=built successfully", { timeout: 30000 }); + await page.waitForSelector("text=built successfully", { + timeout: 30000 * 3, + }); await page.getByRole("button", { name: "Playground", exact: true }).click(); await page