# Lessons Short, actionable retros from past sessions. Newest at top. Each entry: one line title + ≤6 lines body. The `autodev` orchestrator surfaces the top 3 entries on every invocation. --- ## 2026-05-11 — Don't replace `URL` via `vi.stubGlobal('URL', { ...URL, ... })` When stubbing `URL.createObjectURL` / `URL.revokeObjectURL` for a JSDOM-backed test, **patch the methods on the constructor directly**. Never do `vi.stubGlobal('URL', { ...URL, createObjectURL })` — the spread copies only own enumerable properties of the `URL` *function object*, not its prototype, so the global `URL` becomes a plain object. `new URL(...)` then throws / returns garbage in MSW handlers and the SPA's API helper, and the test silently sees "no fetch was made" instead of the real failure. Pattern in `tests/upload_size_cap.test.tsx` is the canonical fix. ---