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

pull/1773/head
Elian Doran 2025-05-01 14:29:45 +07:00
parent a083418906
commit d690344c00
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

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