Files
openclaw/test/helpers/poll.ts
2026-06-04 20:42:26 -04:00

31 lines
801 B
TypeScript

// Poll test helper retries assertions until a timeout.
import { sleep } from "../../src/utils.js";
// Polling helper for tests that wait on async state.
/** Polling timeout and interval options. */
export type PollOptions = {
timeoutMs?: number;
intervalMs?: number;
};
/** Poll until fn returns a non-nullish value or timeout elapses. */
export async function pollUntil<T>(
fn: () => Promise<T | null | undefined>,
opts: PollOptions = {},
): Promise<T | undefined> {
const timeoutMs = opts.timeoutMs ?? 2000;
const intervalMs = opts.intervalMs ?? 25;
const start = Date.now();
while (Date.now() - start < timeoutMs) {
const value = await fn();
if (value !== null && value !== undefined) {
return value;
}
await sleep(intervalMs);
}
return undefined;
}