import { defineConfig } from "vitest/config"; export default defineConfig({ test: { globals: true, environment: "node", include: ["tests/integration/**/*.e2e-spec.ts", "tests/integration/**/*.spec.ts"], testTimeout: 30000, }, });