From ce30276c73976e9e748c4b4f6e929340131f67f5 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 26 Feb 2025 10:27:34 +0100 Subject: [PATCH] test: skip clientList e2e --- test/cypress/support/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index bc8158b626b..6b6ebd426ee 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -112,7 +112,7 @@ function selectItem(selector, option, ariaControl, hasWrite = true) { .find((item) => item.innerText.includes(option)); if (matchingItem) return cy.wrap(matchingItem).click(); - if (hasWrite) cy.get(selector).clear().type(option, { delay: 0 }); + if (hasWrite) cy.get(selector).clear().type(option); return selectItem(selector, option, ariaControl, false); }); }