mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
Merge pull request #11588 from ToolJet/fix/cypress-subpath-docker
Fix: Cypress subpath workflow's docker port
This commit is contained in:
commit
16b6d5c1e8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/cypress-platform.yml
vendored
4
.github/workflows/cypress-platform.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue