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.
This commit is contained in:
zeroaltitude 2026-03-07 11:07:54 -07:00
parent 1e11385cbd
commit ff014f96e4
No known key found for this signature in database
GPG Key ID: 77592FB1C703882E

View File

@ -37,6 +37,7 @@ function makeEvent(overrides?: Partial<InternalHookEvent>): InternalHookEvent {
context: {},
timestamp: new Date(),
messages: [],
postHookActions: [],
...overrides,
};
}