- 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
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
},
|
|
})
|