chore(llms): limit live test concurrency (#604)

This commit is contained in:
Simon
2026-07-09 15:47:12 +08:00
committed by GitHub
parent ab7e9e9a89
commit 33dcf67252
+2
View File
@@ -4,6 +4,8 @@ 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',
},