UNPKG

@testing-library/dom

Version:

Simple and complete DOM testing utilities that encourage good testing practices.

13 lines (11 loc) 293 B
export interface waitForOptions { container?: HTMLElement timeout?: number interval?: number onTimeout?: (error: Error) => Error mutationObserverOptions?: MutationObserverInit } export function waitFor<T>( callback: () => Promise<T> | T, options?: waitForOptions, ): Promise<T>