test: increase WebDriverIO timeout for LLM-judged E2E tests

Increase global mocha timeout from 60s to 180s in wdio.conf.js to accommodate longer-running LLM judge tests that evaluate agent responses and code generation. Add explicit per-test overrides for Phase B scenarios B4 and B5 to ensure adequate time for agent startup, execution, and LLM verification.

- wdio.conf.js: global timeout 60_000 → 180_000ms
- phase-b.test.ts: explicit 180_000ms timeout for B4 and B5 scenarios
This commit is contained in:
Hibryda 2026-03-12 07:13:57 +01:00
parent f555186843
commit 78afb0e552
2 changed files with 3 additions and 1 deletions

View file

@ -103,7 +103,7 @@ export const config = {
framework: 'mocha',
mochaOpts: {
ui: 'bdd',
timeout: 60_000,
timeout: 180_000,
},
// ── Reporter ──