Trim the prose to what is true now
CI / full-gate (push) Successful in 2m51s

This commit is contained in:
2026-08-22 11:24:16 +02:00
parent b708aab981
commit 5820264885
7 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -17,6 +17,6 @@ test("the real template renders clean and pins no literal image tag", () => {
const rendered = renderOverview(readFileSync("release-tooling/dockerhub-overview.md.tmpl", "utf8"), "9.9.9");
assert.deepEqual(leftoverPlaceholders(rendered), []);
assert.match(rendered, /larvit\/plainpages:9\.9\.9/); // the placeholder actually reaches the examples
// A hardcoded version here is what went stale on the live page; the release must own every one.
// The release owns every image tag on the page, so a literal one must not survive rendering.
assert.doesNotMatch(rendered, /larvit\/plainpages:\d+\.\d+\.\d+(?<!9\.9\.9)/);
});