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

export default defineConfig({
    test: {
        environment: 'jsdom',
        globals: true,
        setupFiles: ['./src/setupTests.ts'],
        // Limit concurrency to avoid resource exhaustion on the VM
        fileParallelism: false,
        pool: 'threads',
    },
});