8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
1 changed files with 3 additions and 6 deletions
Showing only changes of commit 257edbbd13 - Show all commits

View File

@ -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) => {