test: satisfy lint in optimized tests

This commit is contained in:
Peter Steinberger
2026-05-06 09:05:29 +01:00
parent 3fb1abcdcb
commit 54e23b6d11

View File

@@ -192,6 +192,9 @@ function createCronEventCollector() {
const flush = (payload: Record<string, unknown>) => {
for (let index = waiters.length - 1; index >= 0; index -= 1) {
const waiter = waiters[index];
if (!waiter) {
continue;
}
if (!waiter.check(payload)) {
continue;
}