1
0
Fork 0
mirror of synced 2024-07-30 02:26:11 +12:00

Increasing timeouts for commands

Increased timeout values within the following commands:
- applicationInAppTable
- createTable

These will assist with the createApp tests that failed due to timing issues on the CI run
This commit is contained in:
Mitch-Budibase 2022-12-22 15:09:32 +00:00
parent c508da0f24
commit 5ce98f06e3

View file

@ -413,7 +413,7 @@ Cypress.Commands.add("searchForApplication", appName => {
// Assumes there are no others
Cypress.Commands.add("applicationInAppTable", appName => {
cy.visit(`${Cypress.config().baseUrl}/builder`, { timeout: 30000 })
cy.get(".appTable", { timeout: 5000 }).within(() => {
cy.get(".appTable", { timeout: 30000 }).within(() => {
cy.get(".title").contains(appName).should("exist")
})
})
@ -441,7 +441,7 @@ Cypress.Commands.add("createTable", (tableName, initialTable) => {
if (!initialTable) {
cy.navigateToDataSection()
}
cy.get(`[data-cy="new-datasource"]`, { timeout: 2000 }).click()
cy.get(`[data-cy="new-datasource"]`, { timeout: 20000 }).click()
cy.wait(2000)
cy.get(".item", { timeout: 2000 })
.contains("Budibase DB")