fix(test): use correct RequirementCounts type fields in edge case tests

Replace non-existent `invalidated` field with the correct type fields
(`outOfScope`, `blocked`, `total`) to pass typecheck.
This commit is contained in:
Jeremy 2026-04-04 10:25:00 -05:00
parent 181243a933
commit 3f9fa9351f

View file

@ -269,7 +269,7 @@ function buildDispatchCtx(
blockers: [],
nextAction: "",
registry: [],
requirements: { active: 0, validated: 0, invalidated: 0, deferred: 0 },
requirements: { active: 0, validated: 0, deferred: 0, outOfScope: 0, blocked: 0, total: 0 },
progress: { milestones: { done: 0, total: 1 } },
...stateOverrides,
},