import { TestUserConfig } from "vitest/node" // Vitest configuration export default { test: { // Allow longer timeouts, since AI takes a while to respond // sometimes and Anthropic has IP based rate limits testTimeout: 10 * 60 * 1000, } satisfies TestUserConfig }