From 9c1a6de88e6bfdf513351a2cf3e4c48ff3d8f0e8 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:54:55 -0300 Subject: [PATCH] fix: add bigger timeout to pokedex test (#9551) Add bigger timeout to pokedex test --- src/frontend/tests/core/integrations/Pokedex Agent.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/tests/core/integrations/Pokedex Agent.spec.ts b/src/frontend/tests/core/integrations/Pokedex Agent.spec.ts index 4df94a536..2b996f213 100644 --- a/src/frontend/tests/core/integrations/Pokedex Agent.spec.ts +++ b/src/frontend/tests/core/integrations/Pokedex Agent.spec.ts @@ -35,10 +35,10 @@ withEventDeliveryModes( await page.getByTestId("button-send").last().click(); const stopButton = page.getByRole("button", { name: "Stop" }); - await stopButton.waitFor({ state: "visible", timeout: 30000 }); + await stopButton.waitFor({ state: "visible", timeout: 40000 }); if (await stopButton.isVisible()) { - await expect(stopButton).toBeHidden({ timeout: 120000 }); + await expect(stopButton).toBeHidden({ timeout: 200000 }); } const output = await page.getByTestId("div-chat-message").innerText();