From 8f2d1ef6f477a9ec5460f00bcb464e71ac306e9b Mon Sep 17 00:00:00 2001 From: philipp Date: Fri, 19 Apr 2024 15:04:03 +0200 Subject: [PATCH] wait until dev server started for frontend tests --- frontend/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index e5adfb0..520a154 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -72,5 +72,6 @@ export default defineConfig({ webServer: { timeout: 15 * 60 * 1000, command: 'cd .. && ./test_db.sh && cargo r', + url: 'http://127.0.0.1:8000' }, });