export const flushMicrotasks = async () => { await Promise.resolve(); await Promise.resolve(); }; export const advanceTimersAndFlush = async (milliseconds = 0) => { jest.advanceTimersByTime(milliseconds); await flushMicrotasks(); };