1import { defineConfig } from "vitest/config";23// Integration tests share one Postgres database: run files sequentially so game4// library syncs and force-publish statements do not race each other.5export default defineConfig({ test: { fileParallelism: false, testTimeout: 20_000 } });6