diff --git a/src/helpers/wait-for.ts b/src/helpers/wait-for.ts index ae6739a..cce79ba 100644 --- a/src/helpers/wait-for.ts +++ b/src/helpers/wait-for.ts @@ -3,6 +3,6 @@ import type { MaybePromise } from "./types.js" export async function waitFor(condition: () => MaybePromise) { while (!(await condition())) { - await setTimeout() + await setTimeout(100) } }