From 9337d9fbf451c4172c9cff19c77d691e18fc5b89 Mon Sep 17 00:00:00 2001 From: Mitch-Budibase Date: Tue, 6 Dec 2022 11:01:25 +0000 Subject: [PATCH] appOverview Cypress Test Update The test 'Should reflect an application that has been unpublished' failed on last nights build. This is likely a timing issue. I have included a wait and timeout within the test. It passes locally, just not on the nightly build --- packages/builder/cypress/integration/appOverview.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/builder/cypress/integration/appOverview.spec.js b/packages/builder/cypress/integration/appOverview.spec.js index d7f2882b26..dafafab67a 100644 --- a/packages/builder/cypress/integration/appOverview.spec.js +++ b/packages/builder/cypress/integration/appOverview.spec.js @@ -140,7 +140,8 @@ filterTests(["all"], () => { }) cy.visit(`${Cypress.config().baseUrl}/builder`) - cy.get(".appTable .app-row-actions button") + cy.wait(1000) + cy.get(".appTable .app-row-actions button", { timeout: 10000 }) .contains("Manage") .eq(0) .click({ force: true })