mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
dc9064092d
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.
12 lines
266 B
TypeScript
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,
|
|
},
|
|
});
|