Added fronted test instructions

This commit is contained in:
Dave
2026-02-19 12:58:40 +00:00
parent e47c8814e6
commit b333814fcc

View File

@@ -30,6 +30,22 @@ cargo build --release
## Testing
### Frontend Tests
The frontend uses **Vitest** for unit tests and **Playwright** for end-to-end tests.
```bash
cd frontend
# Run unit tests
pnpm test
# Run end-to-end tests
pnpm test:e2e
```
### Backend Tests
This project uses **nextest** for running tests and **cargo-llvm-cov** for code coverage.
### Install Tools