From d690344c004e9ee1bee8fe0660ae5b2023d35261 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 1 May 2025 14:29:45 +0300 Subject: [PATCH] chore(server-e2e): URL causing cookies to not work properly --- apps/server-e2e/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server-e2e/playwright.config.ts b/apps/server-e2e/playwright.config.ts index cd6dea265..c8378f29a 100644 --- a/apps/server-e2e/playwright.config.ts +++ b/apps/server-e2e/playwright.config.ts @@ -9,7 +9,7 @@ require('dotenv').config({ // For CI, you may want to set BASE_URL to the deployed application. const port = process.env['TRILIUM_PORT']; -const baseURL = process.env['BASE_URL'] || `http://localhost:${port}`; +const baseURL = process.env['BASE_URL'] || `http://127.0.0.1:${port}`; /** * See https://playwright.dev/docs/test-configuration.