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:
parent
181243a933
commit
3f9fa9351f
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue