test: add test suites for Projekt-KIQ-HP (12 tests) and andreknie.de validation (16 tests)

- Projekt-KIQ-HP: vitest + server API tests (health, login, auth, access-requests)
- andreknie.de: validation utility tests (email, contact, talk-request, newsletter, resource-download)
- db-planet-mcp-server: existing 7 tests confirmed working
This commit is contained in:
2026-07-10 18:43:41 +02:00
parent 6ae0c91539
commit 18f6e2732e
5 changed files with 1555 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
globals: true,
},
})