1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

Merge pull request #5909 from Budibase/cypress-testing

Adding Retries for Cypress tests
This commit is contained in:
Mitch-Budibase 2022-05-16 15:52:31 +01:00 committed by GitHub
commit 6b502ac2b4
2 changed files with 5 additions and 1 deletions

View file

@ -7,5 +7,9 @@
"WORKER_PORT": "4200",
"JWT_SECRET": "test",
"HOST_IP": ""
},
"retries": {
"runMode": 2,
"openMode": 0
}
}

View file

@ -573,7 +573,7 @@ Cypress.Commands.add("addDatasourceConfig", (datasource, skipFetch) => {
cy.get(".spectrum-Button")
.contains("Save and fetch tables")
.click({ force: true })
cy.wait(1000)
cy.wait(3000)
})
}
})