Skip to content

Commit 526581c

Browse files
committed
set a wait timeout
1 parent 7209187 commit 526581c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
# Start the dev environment in background
4848
yarn dev:platform &
4949
# Wait for the webserver to be ready
50-
npx wait-on http://localhost:5173
50+
npx wait-on --timeout 5m http://localhost:5173
5151
# Wait for the database to be ready
52-
npx wait-on http://localhost:5984
52+
npx wait-on --timeout 5m http://localhost:5984
5353
# Wait for the backend to be ready
54-
npx wait-on http://localhost:3000
54+
npx wait-on --timeout 5m http://localhost:3000
5555
5656
- name: Run E2E tests
5757
run: |

0 commit comments

Comments
 (0)