summaryrefslogtreecommitdiff
path: root/tests/test-debug-wttrin-show-raw.el
Commit message (Collapse)AuthorAgeFilesLines
* fix: debug-wttrin-show-raw serves cached data instead of fetchingCraig Jennings2026-04-041-0/+17
| | | | | | A debug command should show what the API currently returns, not a cached copy. Bind wttrin--force-refresh to t so the fetch always bypasses the cache.
* doc: update copyright years to 2026 and add missing author fieldCraig Jennings2026-04-041-1/+1
| | | | | Update copyright headers across all 37 .el files to include 2026. Add missing Author field to testutil-wttrin.el for consistency.
* fix: debug-wttrin-show-raw broken by async API changeCraig Jennings2026-04-041-0/+104
debug-wttrin-show-raw called wttrin--get-cached-or-fetch with 1 arg, but the function now requires 2 (location + callback) since the async refactor. Rewrote to use the callback pattern. Also handles nil response gracefully.