From 6c202ed5802c1c8f413a8112a6a7f9d54a984a80 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 26 Sep 2025 09:12:02 +0200 Subject: [PATCH] Bug 38201: Remove cy.wait(500) Statements removed by bug 40051 but reintroduced by a commit earlier (cherry picked from commit ab8914358f97bd4e78b20490e5741f87e40ebb15) Signed-off-by: Jonathan Druart Signed-off-by: Lucas Gass --- t/cypress/integration/ERM/Agreements_spec.ts | 1 - t/cypress/integration/ERM/Titles_spec.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/t/cypress/integration/ERM/Agreements_spec.ts b/t/cypress/integration/ERM/Agreements_spec.ts index d70b8be06c8..7395f9751d9 100644 --- a/t/cypress/integration/ERM/Agreements_spec.ts +++ b/t/cypress/integration/ERM/Agreements_spec.ts @@ -441,7 +441,6 @@ describe("Agreement CRUD operations", () => { .contains("Edit") .click(); cy.wait("@get-agreement"); - cy.wait(500); // Cypress is too fast! Vue hasn't populated the form yet! cy.get("#agreements_add h2").contains("Edit agreement"); cy.left_menu_active_item_is("Agreements"); diff --git a/t/cypress/integration/ERM/Titles_spec.ts b/t/cypress/integration/ERM/Titles_spec.ts index 83a74fd54df..e87001e61a0 100644 --- a/t/cypress/integration/ERM/Titles_spec.ts +++ b/t/cypress/integration/ERM/Titles_spec.ts @@ -434,7 +434,6 @@ describe("Title CRUD operations", () => { cy.visit("/cgi-bin/koha/erm/eholdings/local/titles/1"); cy.wait("@get-related-package"); cy.contains("Packages"); - cy.wait(500); cy.intercept( "GET", -- 2.51.0