diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index ca28643836..9424e64491 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -14,7 +14,6 @@ on: - "!app/client/cypress/manual_TestSuite/**" jobs: - server-build: name: server-build uses: ./.github/workflows/server-build.yml @@ -37,7 +36,7 @@ jobs: pr: 0 build-docker-image: - needs: [ client-build, server-build, rts-build ] + needs: [client-build, server-build, rts-build] # Only run if the build step is successful if: success() name: build-docker-image @@ -47,7 +46,7 @@ jobs: pr: 0 perf-test: - needs: [ build-docker-image ] + needs: [build-docker-image] # Only run if the build step is successful if: success() name: perf-test @@ -57,7 +56,7 @@ jobs: pr: 0 perf-test-v2: - needs: [ build-docker-image ] + needs: [build-docker-image] # Only run if the build step is successful if: success() name: perf-test @@ -66,9 +65,8 @@ jobs: with: pr: 0 - ci-test: - needs: [ build-docker-image ] + needs: [build-docker-image] # Only run if the build step is successful if: success() name: ci-test diff --git a/app/client/cypress.config.ts b/app/client/cypress.config.ts index da819cd2ba..8024a3e20d 100644 --- a/app/client/cypress.config.ts +++ b/app/client/cypress.config.ts @@ -4,7 +4,7 @@ export default defineConfig({ watchForFileChanges: false, defaultCommandTimeout: 30000, requestTimeout: 60000, - responseTimeout: 30000, + responseTimeout: 60000, pageLoadTimeout: 60000, videoUploadOnPasses: false, videoCompression: false, diff --git a/app/client/cypress/support/Pages/DataSources.ts b/app/client/cypress/support/Pages/DataSources.ts index 33e3e0538f..87aad3ebae 100644 --- a/app/client/cypress/support/Pages/DataSources.ts +++ b/app/client/cypress/support/Pages/DataSources.ts @@ -1391,7 +1391,7 @@ export class DataSources { public StartContainerNVerify( containerType: "MsSql" | "Arango" | "Elasticsearch", containerName: string, - timeout = 30000, + timeout = 40000, ) { let containerCommand = ""; switch (containerType) { diff --git a/app/client/cypress/support/Pages/HomePage.ts b/app/client/cypress/support/Pages/HomePage.ts index a19958cc50..6db40c9df2 100644 --- a/app/client/cypress/support/Pages/HomePage.ts +++ b/app/client/cypress/support/Pages/HomePage.ts @@ -513,6 +513,7 @@ export class HomePage { this.agHelper.GetNClick(this._forkApp); this.agHelper.AssertElementVisible(this._forkModal); this.agHelper.ClickButton("Fork"); + this.assertHelper.AssertNetworkStatus("getWorkspace"); } public DeleteApplication(appliName: string) { diff --git a/app/client/cypress_ci.config.ts b/app/client/cypress_ci.config.ts index 9b92fbf049..f5d517169d 100644 --- a/app/client/cypress_ci.config.ts +++ b/app/client/cypress_ci.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from "cypress"; export default defineConfig({ defaultCommandTimeout: 30000, requestTimeout: 60000, - responseTimeout: 30000, + responseTimeout: 60000, pageLoadTimeout: 60000, videoUploadOnPasses: false, videoCompression: false,