19 lines
566 B
TypeScript
19 lines
566 B
TypeScript
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 integration tests can use TEST_DATABASE_URL / DATABASE_URL
|
|
// when running `pnpm test` from the workspace root.
|
|
config({ path: path.resolve(__dirname, "../../.env") });
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
globals: false,
|
|
setupFiles: [path.resolve(__dirname, "test/setup-env.ts")],
|
|
},
|
|
});
|