first implementation
This commit is contained in:
parent
1eb4641ed9
commit
a56a4c076a
14 changed files with 898 additions and 729 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue