diff --git a/scripts/cypress/support/commands.js b/scripts/cypress/support/commands.js index 2625086bcd..f528f79ec9 100644 --- a/scripts/cypress/support/commands.js +++ b/scripts/cypress/support/commands.js @@ -183,7 +183,7 @@ Cypress.Commands.add("openTableTab", (tn, rc) => { Cypress.Commands.add("closeTableTab", (tn) => { cy.task("log", `[closeTableTab] ${tn}`); - cy.get(`.project-tab`).contains(tn, { timeout: 10000 }).should("exist"); + cy.get(`.project-tab`).contains(tn).should("exist"); cy.get(`[href="#table||||${tn}"]`).find("button.mdi-close").click(); });