From 4efc32f8e2febace796c64a1d7dcedcd7fc14ac5 Mon Sep 17 00:00:00 2001 From: Valere Date: Thu, 13 Mar 2025 15:37:54 +0100 Subject: [PATCH] fix: local element-call not running --- playwright.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index a4e7e06e..accb1b5b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -66,9 +66,9 @@ export default defineConfig({ ], /* Run your local dev server before starting the tests */ - // webServer: { - // command: 'yarn run backend', - // url: 'http://synapse.localhost:8008', - // reuseExistingServer: !process.env.CI, - // }, + webServer: { + command: "yarn dev", + url: "https://localhost:3000", + reuseExistingServer: !process.env.CI, + }, });