From 7b971b65138c14b186afd44e372a06c7daf87bf5 Mon Sep 17 00:00:00 2001 From: Gage Krumbach Date: Tue, 10 Dec 2024 14:56:29 -0600 Subject: [PATCH] Increase timeout for disabling recurring run in Cypress test for pipeline runs --- .../cypress/cypress/tests/mocked/pipelines/pipelineRuns.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/pipelineRuns.cy.ts b/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/pipelineRuns.cy.ts index 3bd524dd26..61b06bfbe7 100644 --- a/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/pipelineRuns.cy.ts +++ b/frontend/src/__tests__/cypress/cypress/tests/mocked/pipelines/pipelineRuns.cy.ts @@ -951,7 +951,7 @@ describe('Pipeline runs', () => { .getRowByName(mockRecurringRuns[0].display_name) .findStatusSwitchByRowName() .click(); - cy.wait('@disableRecurringRun'); + cy.wait('@disableRecurringRun', { timeout: 10000 }); }); it('schedules toggle should be disabled for the schedules with archived experiment', () => {