Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/create-expert/create-expert.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const CLI_PATH = path.join(PROJECT_ROOT, "apps/create-expert/dist/bin/cli.js")
// LLM API calls require extended timeout; delegation adds extra LLM round-trips.
// The create-expert workflow involves multiple delegation round-trips (planner →
// definition-writer → expert-tester, with possible retries) which can exceed
// 5 minutes in CI environments.
const LLM_TIMEOUT = 420_000
// 7 minutes in CI environments.
const LLM_TIMEOUT = 600_000

function runCreateExpert(query: string, cwd: string, timeout = LLM_TIMEOUT): Promise<RunResult> {
const args = injectProviderArgs(["--headless", query])
Expand Down