Files

14 lines
314 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
include: ['tests/**/*.test.ts'],
coverage: {
provider: 'v8',
include: ['src/**/*.ts'],
thresholds: { lines: 90, branches: 90, functions: 90, statements: 90 },
},
},
});