From 62ca6bd32bc5ae6b58ff317dde204cd8c66f75f9 Mon Sep 17 00:00:00 2001 From: zhi Date: Sun, 15 Mar 2026 22:40:17 +0000 Subject: [PATCH] test: use local proxy endpoints for e2e --- HarborForge.Frontend.Test | 2 +- docker-compose-frontend-expose.yml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HarborForge.Frontend.Test b/HarborForge.Frontend.Test index a26f91c..e8be04c 160000 --- a/HarborForge.Frontend.Test +++ b/HarborForge.Frontend.Test @@ -1 +1 @@ -Subproject commit a26f91c95fca865cdae9ea1b8921427cf8c7e193 +Subproject commit e8be04c968d976f16c15aa350f9f8a40e6afe102 diff --git a/docker-compose-frontend-expose.yml b/docker-compose-frontend-expose.yml index 2b31f24..50d0b03 100644 --- a/docker-compose-frontend-expose.yml +++ b/docker-compose-frontend-expose.yml @@ -91,14 +91,16 @@ services: restart: "no" environment: # Use internal service name for test to reach frontend - BASE_URL: http://frontend:${FRONTEND_PORT:-3000} - FRONTEND_URL: http://frontend:${FRONTEND_PORT:-3000} - WEB_SERVER_URL: http://frontend:${FRONTEND_PORT:-3000} + BASE_URL: http://127.0.0.1:${FRONTEND_PORT:-3000} + FRONTEND_URL: http://127.0.0.1:${FRONTEND_PORT:-3000} + WEB_SERVER_URL: http://127.0.0.1:${FRONTEND_PORT:-3000} WIZARD_URL: http://127.0.0.1:${WIZARD_PORT:-8080}/wizard WIZARD_API_URL: http://127.0.0.1:${WIZARD_PORT:-8080} WIZARD_HOST: wizard WIZARD_PORT: ${WIZARD_PORT:-8080} BACKEND_URL: http://127.0.0.1:${BACKEND_PORT:-8000} + BACKEND_HOST: backend + FRONTEND_HOST: frontend CHROME_DEBUGGING_PORT: 9222 networks: - test-network