import { defineConfig } from "vitest/config" export default defineConfig({ test: { environment: "node", include: ["tests/*.{test,spec}.{js,ts}"], testTimeout: 1200000, teardownTimeout: 300000, hookTimeout: 600000, globalSetup: ["tests/setup.ts"], pool: "threads", poolOptions: { threads: { singleThread: true } } } })