From 196a534c0e6d3901eb2fe15c0c7b1d31ea128276 Mon Sep 17 00:00:00 2001 From: walstanb Date: Mon, 8 Feb 2021 15:56:12 +0530 Subject: [PATCH] fix: failing ui test cases --- cypress/support/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 7f0afdf035..416d782ffe 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -275,7 +275,7 @@ Cypress.Commands.add('get_open_dialog', () => { }); Cypress.Commands.add('hide_dialog', () => { - cy.wait(200); + cy.wait(300); cy.get_open_dialog().find('.btn-modal-close').click(); cy.get('.modal:visible').should('not.exist'); });