import { defineConfig } from "vitest/config"; export default defineConfig({ test: { include: ["test/**/*.test.ts"], // Unit tests run without a DB; integration tests set their own env. env: { NODE_ENV: "test" }, }, });