diff --git a/scripts/cypress-v2/support/commands.js b/scripts/cypress-v2/support/commands.js index 32e6da9fc6..423d830f45 100644 --- a/scripts/cypress-v2/support/commands.js +++ b/scripts/cypress-v2/support/commands.js @@ -378,7 +378,7 @@ Cypress.Commands.add("createColumn", (table, columnName) => { }); Cypress.Commands.add("toastWait", (msg) => { - cy.get('.ant-message-notice-content:visible', { timout: 30000 }).should('exist') + // cy.get('.ant-message-notice-content:visible', { timout: 30000 }).should('exist') cy.get('.ant-message-notice-content:visible', { timout: 12000 }).contains(msg).should('exist') cy.get('.ant-message-notice-content:visible', { timout: 12000 }).should('not.exist') });