From ead0d3158a5f30bd6fd42302e7fc3de7bf77a794 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 17 Jun 2026 01:18:34 +0200 Subject: [PATCH] test(model): expect three milestones in the bundled sample --- src/model/plan.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/plan.test.ts b/src/model/plan.test.ts index f529adb..4fbd6eb 100644 --- a/src/model/plan.test.ts +++ b/src/model/plan.test.ts @@ -144,6 +144,6 @@ describe('parse validation', () => { it('parses the bundled sample without error', () => { const raw = parseMacroplan(SAMPLE_PLAN) expect(raw.features).toHaveLength(5) - expect(raw.milestones).toHaveLength(1) + expect(raw.milestones).toHaveLength(3) }) })