Files
copilotkit__copilotkit/packages/runtime/vitest.config.mjs
Alem Tuzlak 9a6ee39d96 chore(runtime): update package config, CI workflows, and docs
- Add package.json exports for v2/{express,hono,node} subpaths
- Add elysia devDependency and tsdown entry points
- Exclude bun integration tests from vitest config
- Update CI workflows to include runtime-servers test job
- Add runtime-server-adapter docs page
- Add changeset for the fetch-based runtime feature
2026-04-03 18:41:27 +02:00

14 lines
378 B
JavaScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
globals: true,
include: ["src/**/*.{test,spec}.ts", "tests/**/*.{test,spec}.ts"],
exclude: ["**/dist/**", "**/integration/bun/**"],
setupFiles: ["./tests/setup.vitest.ts"],
reporters: [["default", { summary: false }]],
silent: true,
},
});