Files
copilotkit__copilotkit/scripts/release/vitest.config.mts
Tyler Slaton dc9064092d fix: use absolute include path in release vitest config
The relative path "lib/**" didn't resolve when vitest runs from the
repo root. Changed to "scripts/release/lib/**" so it works regardless
of cwd.
2026-04-10 23:17:23 -07:00

12 lines
266 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
globals: true,
include: ["scripts/release/lib/**/*.{test,spec}.ts"],
reporters: [["default", { summary: false }]],
silent: true,
},
});