From ff014f96e4033afd31ea4c6742915c8772ec430e Mon Sep 17 00:00:00 2001 From: zeroaltitude Date: Sat, 7 Mar 2026 11:07:54 -0700 Subject: [PATCH] fix: add postHookActions to boot-md test fixture The InternalHookEvent interface now requires postHookActions (added by this PR). The boot-md test's makeEvent helper was missing it, causing a tsc error that fails CI. --- src/hooks/bundled/boot-md/handler.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/bundled/boot-md/handler.test.ts b/src/hooks/bundled/boot-md/handler.test.ts index de2abd6475f..46466b254b8 100644 --- a/src/hooks/bundled/boot-md/handler.test.ts +++ b/src/hooks/bundled/boot-md/handler.test.ts @@ -37,6 +37,7 @@ function makeEvent(overrides?: Partial): InternalHookEvent { context: {}, timestamp: new Date(), messages: [], + postHookActions: [], ...overrides, }; }