From a217fb409f0506da9372b081e68061ad3fe3327b Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Sat, 9 May 2026 13:35:04 -0700 Subject: [PATCH] fix(test): correct path calculation in run-e2e.sh Fixed PROJECT_ROOT path calculation from ../ to ../.. Script is in scripts/tests/, so need to go up two levels to reach project root WEB_DIR is now correctly set to project root/web --- scripts/tests/run-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests/run-e2e.sh b/scripts/tests/run-e2e.sh index 329be7d..6b7003b 100755 --- a/scripts/tests/run-e2e.sh +++ b/scripts/tests/run-e2e.sh @@ -5,7 +5,7 @@ set -e # Runs Playwright tests, builds reports, and checks health SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)" WEB_DIR="$PROJECT_ROOT/web" REPORTS_DIR="$SCRIPT_DIR/reports" TIMESTAMP=$(date +%Y%m%d_%H%M%S)