import { defineConfig } from "vitest/config"; // Root vitest config for the MCP conformance verification suite // (tests/mcp-conformance/, R-001, G-017, M2 gate item 15) AND the two-track // LLM smoke (tests/llm-smoke/, G-018, G-019, M2 gate item 8). Run via // `pnpm test:conformance` (defined in the root package.json). The broker // modules + the llm-mock package resolve via the workspace symlinks. export default defineConfig({ test: { environment: "node", include: [ "tests/mcp-conformance/**/*.test.ts", "tests/llm-smoke/**/*.test.ts", ], testTimeout: 30000, }, });