aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/vitest.config.ts
blob: 9cb79aef6956b4d0a48e7f212bf72d87ccec2013 (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/**'],
  },
});