Barazo AppView backend
barazo.forum
1import { defineConfig } from 'vitest/config'
2
3export default defineConfig({
4 test: {
5 globals: false,
6 environment: 'node',
7 include: ['tests/**/*.test.ts'],
8 exclude: ['tests/integration/**'],
9 coverage: {
10 provider: 'v8',
11 include: ['src/**/*.ts'],
12 exclude: ['src/server.ts', 'src/db/migrations/**'],
13 thresholds: {
14 statements: 80,
15 branches: 80,
16 functions: 80,
17 lines: 80,
18 },
19 },
20 },
21})