29 lines
817 B
TypeScript
29 lines
817 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
const aiSrcIndex = fileURLToPath(new URL("../ai/src/index.ts", import.meta.url));
|
|
const aiSrcCompat = fileURLToPath(new URL("../ai/src/compat.ts", import.meta.url));
|
|
|
|
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",
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: [
|
|
{ find: /^@earendil-works\/pi-ai$/, replacement: aiSrcIndex },
|
|
{ find: /^@earendil-works\/pi-ai\/compat$/, replacement: aiSrcCompat },
|
|
],
|
|
},
|
|
});
|