openrag/sdks/typescript/vitest.config.ts
2025-12-16 02:04:31 -05:00

9 lines
224 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
testTimeout: 60000, // 60 second timeout for integration tests
hookTimeout: 60000,
},
});