// Vitest 配置 // 依据:02-architecture-design.md §13 测试策略分层 import { defineConfig } from "vitest/config"; import react from "@vitejs/plugin-react"; import { resolve } from "node:path"; export default defineConfig({ plugins: [react()], resolve: { alias: { "@": resolve(__dirname, "./src"), }, }, test: { environment: "jsdom", globals: true, setupFiles: ["./src/test/setup.ts"], include: [ "src/**/*.{test,spec}.{ts,tsx}", "src/**/__tests__/**/*.{ts,tsx}", ], exclude: ["node_modules", ".next", "e2e"], coverage: { provider: "v8", reporter: ["text", "json", "html"], include: ["src/**/*.{ts,tsx}"], exclude: [ "src/**/*.d.ts", "src/test/**", "src/mocks/**", "src/types/**", "src/**/*.config.{ts,tsx}", ], thresholds: { statements: 85, branches: 75, functions: 85, lines: 85, }, }, }, });