test(providers): update reserved-prefix count fixture to 391 after upstream merge

Upstream 65e81158a added new providers to the registry; the reserved set
is a full REGISTRY walk, so the pinned count moves 329 -> 391. The
tracked-artifacts pre-commit gate fails on this branch because the same
upstream commit force-tracked two docs/superpowers/ files that its own
.gitignore excludes — an inherited upstream issue unrelated to this fix,
so hooks are skipped for this fixture-only commit with operator approval.
This commit is contained in:
ggdayup
2026-08-24 18:28:09 +08:00
committed by Markus Hartung
parent 93da24cd79
commit 0a53c8a2ce

View File

@@ -106,8 +106,11 @@ test("shared set excludes manual aliases that never intercept nodes at runtime",
assert.equal(RESERVED_PROVIDER_PREFIXES.has("aq"), false);
});
test("shared set size matches full REGISTRY scan (329 unique prefixes)", () => {
assert.equal(RESERVED_PREFIX_COUNT, 329);
test("shared set size matches full REGISTRY scan (391 unique prefixes)", () => {
// Count measured against upstream/main 65e81158a (was 329 at c68cda7df — new
// providers shift the number; the assertion pins that the set is a full
// REGISTRY walk, not a hand-maintained list).
assert.equal(RESERVED_PREFIX_COUNT, 391);
});
test("isReservedProviderPrefix rejects non-string input", () => {