From 257edbbd13d861ea12e92683ebc2a80919505c78 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Feb 2025 10:57:04 +0100 Subject: [PATCH] fix: refs #6695 fix e2e's --- test/cypress/support/commands.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 7d497c433..b3586baf7 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -329,13 +329,10 @@ Cypress.Commands.add('openUserPanel', () => { }); Cypress.Commands.add('checkNotification', (text) => { - cy.get('.q-notification', { timeout: 5000 }) + cy.get('.q-notification', { timeout: 10000 }) .should('be.visible') - .then(() => { - cy.get('.q-notification') - .filter((_, el) => Cypress.$(el).text().includes(text)) - .should('have.length.greaterThan', 0); - }); + .filter((_, el) => Cypress.$(el).text().includes(text)) + .should('have.length.greaterThan', 0); }); Cypress.Commands.add('openActions', (row) => {