Testing Guide
Running Tests
bash
# All tests
just test
# Backend only
cd backend && uv run pytest
# Frontend only
cd frontend && npm testTest Structure
backend/tests/
├── unit/ # Unit tests
├── integration/ # Integration tests
└── e2e/ # End-to-end testsNext Steps
- Read Development Setup
- View Code Conventions