From 5fc5206686ca8970a6f1d2e08615ed6be2006f95 Mon Sep 17 00:00:00 2001 From: wendybujalski Date: Mon, 29 Sep 2025 16:14:35 -0400 Subject: [PATCH] longer timeouts for get-tiles --- app/web/cypress/ux/tile-view/get-tiles.cy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/web/cypress/ux/tile-view/get-tiles.cy.ts b/app/web/cypress/ux/tile-view/get-tiles.cy.ts index 9035401648..9962e4b6a7 100644 --- a/app/web/cypress/ux/tile-view/get-tiles.cy.ts +++ b/app/web/cypress/ux/tile-view/get-tiles.cy.ts @@ -24,7 +24,7 @@ describe("web", () => { cy.wait(5000); // Find the URL for the synthetic workspace and go there - cy.get('a[href="' + AUTH_API_URL + '/workspaces/' + SI_WORKSPACE_ID + '/go"]') + cy.get('a[href="' + AUTH_API_URL + '/workspaces/' + SI_WORKSPACE_ID + '/go"]', { timeout: 60000 }) .should('be.visible') .invoke('removeAttr', 'target') .click(); @@ -46,7 +46,7 @@ describe("web", () => { function checkTileCount() { // For virtual scrolling, we need to scroll through the entire list // First scroll to top, then gradually scroll down to ensure all items are rendered - cy.get('[data-testid="explore-grid"]').parent().scrollTo("top"); + cy.get('[data-testid="explore-grid"]', { timeout: 60000 }).parent().scrollTo("top"); cy.wait(500); // Scroll through the list in increments to trigger rendering of all items