From 38f1461d37dae588490e6c563fb55ded9e552db2 Mon Sep 17 00:00:00 2001 From: Achim Rohn Date: Wed, 20 May 2026 17:47:44 +0200 Subject: [PATCH] chore: add mise test tasks --- .mise.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.mise.toml b/.mise.toml index b20af64..47fa936 100644 --- a/.mise.toml +++ b/.mise.toml @@ -38,6 +38,14 @@ run = "backend/mvnw -f backend/pom.xml spring-boot:run" description = "Run the Vite frontend" run = "npm --prefix frontend run dev" +[tasks.test-backend] +description = "Run backend tests" +run = "backend/mvnw -f backend/pom.xml test -q" + +[tasks.test-frontend] +description = "Run frontend tests" +run = "cd frontend && npx vitest run" + [tasks.check] description = "Format-check, lint, and test" run = """