import { defineConfig } from "vitest/config"; export default defineConfig({ test: { environment: "node", isolate: false, coverage: { reporter: ["cobertura", "json", "text"], }, outputFile: { junit: "./test-results.xml", }, include: ["test/e2e/**/*.test.ts"], }, });