Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/web/cypress/ux/tile-view/get-tiles.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default timeout here was 4 seconds, this lengthens it to 1 minute.

.should('be.visible')
.invoke('removeAttr', 'target')
.click();
Expand All @@ -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");
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here. 1 minute might not be the exact length we want, but 4 seconds is definitely too short!

cy.wait(500);

// Scroll through the list in increments to trigger rendering of all items
Expand Down
Loading