From c9be009112b03291ea76dd4de0911f495cf1e1ac Mon Sep 17 00:00:00 2001 From: hackerman <3372410+aeneasr@users.noreply.github.com> Date: Tue, 9 Nov 2021 08:59:42 +0100 Subject: [PATCH] fix: e2e test regression (#1937) --- test/e2e/run.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/run.sh b/test/e2e/run.sh index 9a30b9fd87e9..56d6d79ddbca 100755 --- a/test/e2e/run.sh +++ b/test/e2e/run.sh @@ -12,9 +12,9 @@ export PATH=.bin:$PATH export KRATOS_PUBLIC_URL=http://localhost:4433/ export KRATOS_BROWSER_URL=http://localhost:4433/ export KRATOS_ADMIN_URL=http://localhost:4434/ -export KRATOS_UI_URL=http://localhost:4456/ -export KRATOS_UI_REACT_URL=http://localhost:4458/ -export KRATOS_UI_REACT_NATIVE_URL=http://localhost:4457/ +export KRATOS_UI_URL=http://127.0.0.1:4456/ +export KRATOS_UI_REACT_URL=http://127.0.0.1:4458/ +export KRATOS_UI_REACT_NATIVE_URL=http://127.0.0.1:4457/ export LOG_LEAK_SENSITIVE_VALUES=true export DEV_DISABLE_API_FLOW_ENFORCEMENT=true @@ -157,7 +157,7 @@ run() { ( cd "$react_ui_dir" ORY_KRATOS_URL=http://localhost:4433 npm run build - ORY_KRATOS_URL=http://localhost:4433 npm run start -- --port 4458 \ + ORY_KRATOS_URL=http://localhost:4433 npm run start -- --hostname 0.0.0.0 --port 4458 \ >"${base}/test/e2e/react-iu.e2e.log" 2>&1 & ) else