Options for waiting for app startup

interface WaitForAppsOptions {
    timeout?: number;
    throwOnTimeout?: boolean;
    requirePostStarted?: boolean;
}

Properties

timeout?: number

Timeout in milliseconds (default: 30000)

throwOnTimeout?: boolean

Whether to throw error if apps don't start (default: true)

requirePostStarted?: boolean

Whether apps must be fully post-started (default: false)