import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { include: ['tests/**/*.test.ts'], globals: true, testTimeout: 30000, // 30 seconds for comprehensive tests }, });