feat(agent-sdk): add vitest config

This commit is contained in:
Ishaan Jaffer 2026-05-06 14:52:52 -07:00
parent 8ffd32036f
commit 6fa5f15782
No known key found for this signature in database

View file

@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["tests/**/*.test.ts"],
testTimeout: 15_000,
},
});