chore(server-e2e): URL causing cookies to not work properly

This commit is contained in:
Elian Doran 2025-05-01 14:29:45 +03:00
parent a083418906
commit d690344c00
No known key found for this signature in database

View File

@ -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.