From 508a3f2dc7e91b8077e1c89196edc0241fc44823 Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Sun, 9 Aug 2026 16:30:51 +0200 Subject: [PATCH] docs: add test instructions to README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 8a4b468..ef3fcf4 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,20 @@ npm run dev React Dev Server laeuft auf: `http://localhost:5173` API-Calls werden automatisch an `http://localhost:5000` weitergeleitet (siehe `vite.config.ts`). +### Tests + +**Backend (xUnit):** +```bash +cd FocusApp.Tests +dotnet test +``` + +**Frontend (ESLint):** +```bash +cd client +npm run lint +``` + ## 📦 Projektstruktur ```