chore: update util scripts

This commit is contained in:
ramvignesh-b
2026-04-15 02:56:09 +05:30
parent 5594ac50d0
commit a1735e4011
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -89,10 +89,10 @@ export VITE_API_URL="http://localhost:$E2E_BACKEND_PORT"
if [ "$CI" = "true" ]; then
echo "[TEST] Running Playwright Tests (CI)..."
(cd frontend && bun run test:e2e --project=chromium)
(cd frontend && bun run test:e2e --project=chromium "$@")
else
echo "[TEST] Running Playwright Tests in Distrobox..."
(cd frontend && distrobox-enter --name ubuntu-24.04 -- env VITE_API_URL=$VITE_API_URL bun run test:e2e --project=chromium)
(cd frontend && distrobox-enter --name ubuntu-24.04 -- env VITE_API_URL=$VITE_API_URL bun run test:e2e --project=chromium "$@")
fi
echo "[SUCCESS] E2E Tests Completed."