Public dry run dryrun-f6bbcf3a2f6f

This commit is contained in:
Michel Paulissen 2026-07-03 19:22:24 +02:00
parent 5386bb851f
commit 666360b98d
4 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{ {
"kind": "disasmer-filtered-public-tree", "kind": "disasmer-filtered-public-tree",
"source_commit": "0b6a8218d2d6d25f6025f62264e9394b90bd4dfd", "source_commit": "f6bbcf3a2f6fd20b724a51a04861ea480d4c5607",
"release_name": "dryrun-0b6a8218d2d6", "release_name": "dryrun-f6bbcf3a2f6f",
"filtered_out": [ "filtered_out": [
"private/**", "private/**",
"experiments/**", "experiments/**",

View file

@ -22,7 +22,7 @@ function assertEveryCriterionHasStatus(source, name) {
for (const line of lines) { for (const line of lines) {
assert.match( assert.match(
line, line,
/^- \[[ x]\] \*\*(Passed|Partial|Open)(?: \([^)]+\))?:\*\*/, /^- \[[ x]\] \*\*(Passed|Partial|Open|Postponed)(?: \([^)]+\))?:\*\*/,
`${name} criterion lacks an explicit status prefix: ${line}` `${name} criterion lacks an explicit status prefix: ${line}`
); );
} }

View file

@ -61,7 +61,7 @@ assert(lines.length > 0, "CLI-first criteria must contain criteria lines");
for (const line of lines) { for (const line of lines) {
assert.match( assert.match(
line, line,
/^- \[[ x]\] \*\*(Passed|Partial|Open)(?: \([^)]+\))?:\*\*/, /^- \[[ x]\] \*\*(Passed|Partial|Open|Postponed)(?: \([^)]+\))?:\*\*/,
`CLI-first criterion lacks an explicit status prefix: ${line}` `CLI-first criterion lacks an explicit status prefix: ${line}`
); );
} }

View file

@ -46,7 +46,7 @@ expect(
); );
expect( expect(
"future hosted business scope", "future hosted business scope",
/Billing, checkout, hosted support tooling, a full hosted admin console, broad moderation workflows/ /Billing, checkout, paid-plan management, upgrade flows, hosted support tooling, a full hosted admin console, broad moderation workflows/
); );
expect( expect(
"billing is not MVP website work", "billing is not MVP website work",
@ -59,7 +59,7 @@ assert(lines.length > 0, "website inventory must contain status-prefixed checkli
for (const line of lines) { for (const line of lines) {
assert.match( assert.match(
line, line,
/^- \[[ x]\] \*\*(Passed|Partial|Open)(?: \([^)]+\))?:\*\*/, /^- \[[ x]\] \*\*(Passed|Partial|Open|Postponed)(?: \([^)]+\))?:\*\*/,
`website inventory item lacks an explicit status prefix: ${line}` `website inventory item lacks an explicit status prefix: ${line}`
); );
} }