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 = """