UNPKG

dockest

Version:

Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.

8 lines (7 loc) 241 B
import { ReadinessCheck } from '../@types'; /** * Retry a readiness check for the specified amount before failing/succeeding. */ export declare const withRetry: (input: ReadinessCheck, opts: { retryCount: number; }) => ReadinessCheck;