mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: [
|
|
"scripts/**/*.test.ts",
|
|
"src/app/cell-context.test.ts",
|
|
"src/app/features/render-dynamic-component.test.ts",
|
|
],
|
|
},
|
|
});
|