From 93d46262f7ea6c2704aa6ce7c787f94295faba1d Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Tue, 3 May 2022 18:49:55 +0530 Subject: [PATCH] add delay after rename Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- scripts/cypress/support/commands.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/cypress/support/commands.js b/scripts/cypress/support/commands.js index 6661944a2c..176cab8b18 100644 --- a/scripts/cypress/support/commands.js +++ b/scripts/cypress/support/commands.js @@ -338,6 +338,8 @@ Cypress.Commands.add("renameTable", (oldName, newName) => { .should('exist') .first() .click(); + + cy.wait(8000) }); Cypress.Commands.add("createColumn", (table, columnName) => {