import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { environment: 'node', include: ['tests/**/*.test.ts'], setupFiles: ['tests/setup.ts'], // The transport's reconnect timers are real; keep a test from hanging the suite. testTimeout: 10_000, }, });