Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -74,7 +74,7 @@
"check:runner-env-posture": "node scripts/check-runner-env-posture.mjs --self-test && node scripts/check-runner-env-posture.mjs",
"check:cli-test-child-env": "node scripts/check-cli-test-child-env.mjs --self-test && node scripts/check-cli-test-child-env.mjs",
"check:authz-resolver": "node scripts/check-single-authz-resolver.mjs --self-test && node scripts/check-single-authz-resolver.mjs",
"check:slot-lookup": "node scripts/check-slot-lookup-ratchet.mjs",
"check:slot-lookup": "node scripts/check-slot-lookup-ratchet.mjs --self-test && node scripts/check-slot-lookup-ratchet.mjs",
"check:query-options-erasure": "node scripts/check-query-options-erasure-ratchet.mjs --self-test && node scripts/check-query-options-erasure-ratchet.mjs",
"check:verify-stand-in": "node scripts/check-verify-stand-in-erasure.mjs --self-test && node scripts/check-verify-stand-in-erasure.mjs",
"check:service-providers": "node scripts/check-service-providers.mjs",
Expand Down
7 changes: 4 additions & 3 deletions scripts/check-query-options-erasure-ratchet.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -809,9 +809,10 @@ async function selfTest() {
);
}

// And the live tree. This is also the only wired coverage of the OTHER
// gate's call site: `pnpm check:slot-lookup` has no --self-test hook, and
// CI runs this one before the gate itself.
// And the live tree. This is also the only coverage of the OTHER gate's
// call site: `pnpm check:slot-lookup` ships a `--self-test` of its own
// (#12052) but does not repeat this adoption walk, and CI runs this one
// ahead of either gate.
for (const problem of checkGuardAdoption(repoRoot)) assert(false, problem);
}

Expand Down
Loading
Loading