mirror of
https://github.com/cline/cline.git
synced 2026-09-19 10:13:34 +08:00
Several vitest suites lazily await import() their subject inside the first test (so vi.mock factories apply first). That import pulls in heavy workspace packages (@cline/core, @cline/llms, @cline/shared), and on loaded CI runners the first test in a file intermittently exceeds the 5s default timeout and fails the nightly (observed in catalog.test.ts, now resolveModelInfo.test.ts). Set a global 20s testTimeout so import cost attributed to the first test does not cause flakes.