From f323034eed321dbbc337cb2beb8c8c121398320b Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 26 Nov 2025 23:11:55 +0100 Subject: [PATCH] Clean --- scripts/e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e.sh b/scripts/e2e.sh index 821d1603..e67b85b1 100755 --- a/scripts/e2e.sh +++ b/scripts/e2e.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -e +# set -e cd "$(dirname "$0")"/.. @@ -12,7 +12,7 @@ export NEXT_PUBLIC_FIREBASE_ENV=DEV npx nyc --reporter=lcov yarn --cwd=web serve & npx nyc --reporter=lcov yarn --cwd=backend/api dev & npx wait-on http://localhost:3000 -npx playwright test tests/e2e +npx playwright test tests/e2e --headed SERVER_PID=$(fuser -k 3000/tcp) echo $SERVER_PID kill $SERVER_PID