| import { defineConfig } from "vitest/config"; | |
| export default defineConfig({ | |
| test: { | |
| name: "shared", | |
| include: ["tests/**/*.test.ts"], | |
| coverage: { | |
| provider: "v8", | |
| include: ["src/**"], | |
| thresholds: { | |
| lines: 85, | |
| functions: 85, | |
| branches: 85, | |
| statements: 85, | |
| }, | |
| }, | |
| }, | |
| }); | |