Files
coreci-chat/vitest.conformance.config.ts
T
CIAgent 0c15d3d0b2 docs(milestone): complete M2 — MCP Layer & Day 1 Adapters (v0.2)
M2 delivers the read-only MCP capability broker gateway and four Day-1
infrastructure adapters (Proxmox, SSH/Linux, GitHub, Gitea). 13 REQs (015-027)
all pass. 656 tests green. M1 non-regression verified.

MCP spec 2025-06-18 conformance verified (PROTOCOL.md + 7 tests).
Defense-in-depth SSH (broker layer 1 + Relay Agent layer 2 + no-shell exec).
Two-track LLM smoke (Track A mock-path P0 gate passes).
CI: Gitea Actions (.gitea/workflows/ci.yml) with Postgres 16 + RLS verification.

Phases shipped:
  P0  pre-execution          v0.1.0
  P1  Wave F — MCP gateway   v0.1.1
  P2  Wave G — Proxmox       v0.1.2
  P3  Wave H — SSH/Linux     v0.1.3
  P4  Wave I — Git adapters   v0.1.4
  P5  Wave J — SSE+smoke+UI  v0.1.5
  P6  Final — review+ship    v0.1.6 ← milestone release

---ci---
phase: 6
milestone: v0.2
status: complete
phase_role: final
milestone_complete: true
requirements:
  covered: [REQ-015, REQ-016, REQ-017, REQ-018, REQ-019, REQ-020, REQ-021, REQ-022, REQ-023, REQ-024, REQ-025, REQ-026, REQ-027]
  partial: []
---/ci---
2026-08-25 06:14:21 +00:00

17 lines
605 B
TypeScript

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,
},
});