From c61e58dbaf83222dfcc5cf671c673361b4930cf9 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Mon, 9 Sep 2024 14:51:02 +0200 Subject: [PATCH] Use new port for e2e #10706 --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 05d6296..a38556b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -4,7 +4,7 @@ const config: PlaywrightTestConfig = { testDir: './e2e/', outputDir: __dirname + '/logs/tests/e2e/', use: { - baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:4200/', + baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:4212/', headless: true, viewport: {width: 1280, height: 720}, ignoreHTTPSErrors: true, @@ -19,7 +19,7 @@ const config: PlaywrightTestConfig = { }, webServer: { command: 'yarn dev', - port: 4200, + port: 4212, timeout: 120 * 1000, reuseExistingServer: !process.env.CI, },