Files
page-agent/packages/llms/vitest.config.js
T

13 lines
349 B
JavaScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
name: 'llms',
include: ['src/**/*.test.ts'],
// Keep live provider suites under OpenRouter's ~20 req/min free-route cap.
maxConcurrency: 2,
// Suppress console output from passing tests; failed tests still get their logs.
silent: 'passed-only',
},
})