/** * ───────────────────────────────────────────── * SPB Git — Personal Git Platform * ───────────────────────────────────────────── * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : vitest.config.mjs * Purpose : Vitest configuration — single fork (e2e binds real ports) * License : MIT © Simon-Pierre Boucher * ───────────────────────────────────────────── */ import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { pool: 'forks', poolOptions: { forks: { singleFork: true } }, testTimeout: 30000, hookTimeout: 120000, }, });