/** * WebhookQueue additional coverage (SMI-4290 / closes #597) * * Sidecar to WebhookHandler.test.ts — fills three genuine gaps that the * primary suite (`WebhookHandler.test.ts:504`, 10 existing tests) does * not exercise: * * 1. Debounce coalescing with `debounceMs > 0` (existing tests all * pass `debounceMs: 0`, which bypasses the debounce timer entirely). * 2. `waitForProcessing()` with in-flight items, using a processor * that only resolves after all items are released. * 3. Saturation of `maxSize` via the debounced `add()` path (existing * test only exercises saturation via `addImmediate`). * * Kept as a sidecar so pre-commit's file-length check does not block * edits to the main (>500 line) test file. */ export {}; //# sourceMappingURL=WebhookQueue.coverage.test.d.ts.map