first implementation

This commit is contained in:
counterweight 2025-12-20 22:18:14 +01:00
parent 1eb4641ed9
commit a56a4c076a
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
14 changed files with 898 additions and 729 deletions

View file

@ -22,16 +22,16 @@ cd ..
# Start backend (SECRET_KEY should be set via .envrc or environment)
cd backend
uv run uvicorn main:app --port 8000 &
uv run uvicorn main:app --port 8000 --log-level warning &
PID=$!
cd ..
# Wait for backend
sleep 2
# Run tests
# Run tests (suppress Node.js color warnings)
cd frontend
npm run test:e2e
NODE_NO_WARNINGS=1 npm run test:e2e
EXIT_CODE=$?
# Cleanup