refactor(agent): run harness loop directly

This commit is contained in:
Mario Zechner
2026-05-14 21:33:34 +02:00
parent 846906e4d1
commit b7ea82105a
11 changed files with 1711 additions and 251 deletions

View File

@@ -0,0 +1,18 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
testTimeout: 30000,
include: ["test/harness/**/*.test.ts"],
coverage: {
provider: "v8",
all: true,
include: ["src/harness/**/*.ts", "src/agent.ts", "src/agent-loop.ts"],
exclude: ["src/**/*.d.ts"],
reporter: ["text", "html", "lcov"],
reportsDirectory: "coverage/harness",
},
},
});