gstack/design/test
Pablosinyores 5e5037b621 fix(design/variants): surface real 240s timeout in AbortError message
`generateVariant` in `design/src/variants.ts` arms its abort timer
at 240_000 ms (`setTimeout(() => controller.abort(), 240_000)` at
line 61), but the AbortError branch at line 128 returns
`"Timeout (120s)"` — half the actual bound.

The mismatch is purely a stale string literal, but it's the only
signal a caller gets when the API stalls. A user staring at
`Timeout (120s)` has no way to know whether to bump the orchestrator
timeout, retry, or drop the call — the surfaced number is off by 2x
from the timer that fired.

Surface the real bound: "Timeout (240s)". Adds a regression test that
stubs fetch to a permanently-pending promise, fast-forwards only the
240_000 ms abort timer (leaves the leading exponential retry delays
on their real values), and asserts the surfaced error string matches
the configured bound.
2026-05-28 19:11:51 +05:30
..
auth.test.ts v1.42.0.0 Daegu wave: 23 community-filed bugs + PTY classifier enforcement (24 bisect commits) (#1594) 2026-05-20 07:35:01 -07:00
daemon-discovery.test.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
daemon-tests-fixtures.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
daemon.test.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
feedback-roundtrip-daemon.test.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
feedback-roundtrip.test.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
gallery.test.ts feat: design binary — real UI mockup generation for gstack skills (v0.13.0.0) (#551) 2026-03-27 20:32:59 -06:00
serve.test.ts v1.45.0.0 feat(design): persistent board daemon — 24h boards, one tab, board history (#1710) 2026-05-25 20:45:12 -07:00
variants-retry-after.test.ts fix(design/variants): surface real 240s timeout in AbortError message 2026-05-28 19:11:51 +05:30