From 3f9fa9351fb08b626c1538df378e357c5925689f Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 4 Apr 2026 10:25:00 -0500 Subject: [PATCH] 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. --- .../gsd/tests/integration/state-machine-edge-cases.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/extensions/gsd/tests/integration/state-machine-edge-cases.test.ts b/src/resources/extensions/gsd/tests/integration/state-machine-edge-cases.test.ts index 320d3a6e6..e8abe3d94 100644 --- a/src/resources/extensions/gsd/tests/integration/state-machine-edge-cases.test.ts +++ b/src/resources/extensions/gsd/tests/integration/state-machine-edge-cases.test.ts @@ -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, },