mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 22:03:45 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
testTimeout: 30000, // 30 seconds for API calls
|
|
}
|
|
});
|