diff --git a/test/cypress/integration/client/clientList.spec.js b/test/cypress/integration/client/clientList.spec.js index f2e3671baae..7572ea4170f 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'); 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); }); }