aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/vitest.config.ts
blob: eee2cfad6bcb14c61f7ac30cde0eab62f014b55d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="vitest" />
import { defineConfig } from 'vite'

export default defineConfig({
    test: {
        globals: true,
        environment: 'jsdom',
        setupFiles: './src/setupTests.ts',
        exclude: ['**/node_modules/**', '**/dist/**', '**/tests/**'],
    },
})