mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-25 08:32:11 +03:00
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:
@@ -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", () => {
|
||||
|
||||
Reference in New Issue
Block a user