From 85f918b397268adff48ff40b44d4da4a05c88872 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 8 Jun 2025 11:42:59 +0200 Subject: [PATCH] Fix the waiting URL --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 9ae59b3..03151bb 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -27,6 +27,6 @@ jobs: - name: Run the service that will be tested run: HOSTNAME=localhost node .next/standalone/server.js & - name: Wait for the service to be ready - run: npx wait-on http://localhost:3000 --timeout 30000 + run: npx wait-on http://localhost:3000/default/dashboard/guests --timeout 30000 - name: Run Playwright tests run: DEBUG=pw:api pnpm exec playwright test