mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-07-09 17:28:45 +00:00
18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
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",
|
|
},
|
|
},
|
|
});
|