From 3df1eb8594d2a08c41fcdf60858648b78ba07401 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Mon, 14 Jul 2025 10:03:21 -0300 Subject: [PATCH] test: Add 500ms timeout to starter-projects spec for timing reliability (#9040) --- src/frontend/tests/core/integrations/starter-projects.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/tests/core/integrations/starter-projects.spec.ts b/src/frontend/tests/core/integrations/starter-projects.spec.ts index e783b4eb8..9daa72278 100644 --- a/src/frontend/tests/core/integrations/starter-projects.spec.ts +++ b/src/frontend/tests/core/integrations/starter-projects.spec.ts @@ -126,6 +126,8 @@ test( await page.getByTestId("text_card_container").nth(i).click(); + await page.waitForTimeout(500); + await page.waitForSelector('[data-testid="fit_view"]', { timeout: 5000, });