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