From ad267ed1322396582cbb1c5c7d2dd55cabb28089 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 26 Feb 2025 10:26:41 +0100 Subject: [PATCH 1/2] test: skip clientList e2e --- test/cypress/integration/client/clientList.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/integration/client/clientList.spec.js b/test/cypress/integration/client/clientList.spec.js index f2e3671baa..7572ea4170 100644 --- a/test/cypress/integration/client/clientList.spec.js +++ b/test/cypress/integration/client/clientList.spec.js @@ -1,5 +1,5 @@ /// -describe('Client list', () => { +describe.skip('Client list', () => { beforeEach(() => { cy.viewport(1280, 720); cy.login('developer'); From ce30276c73976e9e748c4b4f6e929340131f67f5 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 26 Feb 2025 10:27:34 +0100 Subject: [PATCH 2/2] 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 bc8158b626..6b6ebd426e 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); }); }