test/cypress: fix for table rename validation suite

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
Raju Udava
2022-05-03 18:24:18 +05:30
parent eda3ecc4f1
commit 8bb98959ab
2 changed files with 1 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ export const genTest = (apiType, dbType) => {
});
after(() => {
cy.get(".mdi-close").click({ multiple: true });
cy.get(".mdi-close").click({ multiple: true, force: true });
});
const name = "tablex";

View File

@@ -338,9 +338,6 @@ Cypress.Commands.add("renameTable", (oldName, newName) => {
.should('exist')
.first()
.click();
// kludge: tab appears to flush re-load. wait for it to stabalize
cy.wait(8000)
});
Cypress.Commands.add("createColumn", (table, columnName) => {