import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { environment: 'node', include: ['test/**/*.test.ts'], // Integration tests share one seeded database — running them in parallel // would have them deleting each other's swipes. fileParallelism: false, sequence: { concurrent: false }, testTimeout: 20_000, hookTimeout: 20_000, }, });