From b333814fccb8213ae04a6d4c3e3d148657a865e1 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 19 Feb 2026 12:58:40 +0000 Subject: [PATCH] Added fronted test instructions --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 8199a3c..4920adc 100644 --- a/README.md +++ b/README.md @@ -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