Browse Source

add delay after rename

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/1950/head
Raju Udava 2 years ago
parent
commit
93d46262f7
  1. 2
      scripts/cypress/support/commands.js

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

Loading…
Cancel
Save