From 4a5c9dde4d62d7906b6dca9cdc73b14b151e9bec Mon Sep 17 00:00:00 2001 From: Adish M Date: Tue, 10 Dec 2024 18:46:15 +0530 Subject: [PATCH] Fix: Cypress subpath workflow's docker port --- .github/workflows/cypress-platform.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress-platform.yml b/.github/workflows/cypress-platform.yml index 7d4e3ede0b..2577580715 100644 --- a/.github/workflows/cypress-platform.yml +++ b/.github/workflows/cypress-platform.yml @@ -228,7 +228,7 @@ jobs: - name: Wait for the server to be ready run: | timeout 1500 bash -c ' - until curl --silent --fail http://localhost:80/apps/tooljet/; do + until curl --silent --fail http://localhost:3000/apps/tooljet/; do sleep 5 done' @@ -247,7 +247,7 @@ jobs: uses: cypress-io/github-action@v5 with: working-directory: ./cypress-tests - config: "baseUrl=http://localhost:80/apps/tooljet/" + config: "baseUrl=http://localhost:3000/apps/tooljet/" config-file: cypress-workspace.config.js - name: Capture Screenshots