import { defineConfig } from "vitest/config"; import { config } from "dotenv"; import path from "node:path"; import { fileURLToPath } from "node:url"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Load root .env so database tests receive DATABASE_URL / TEST_DATABASE_URL // when running `pnpm test` from the workspace root. config({ path: path.resolve(__dirname, "../../.env") }); export default defineConfig({ test: { environment: "node", globals: false, }, });