BUPKIS
    Preparing search index...

    Interface PropertyTestConfigVariantAsyncGenerators

    Variant configuration for async assertions using generator-based input.

    Identical to PropertyTestConfigVariantSyncGenerators but with async: true, indicating that expectAsync should be used instead of expect.

    interface PropertyTestConfigVariantAsyncGenerators {
        async: true;
        generators: GeneratorParams;
        numRuns?: undefined;
        randomType?: RandomType;
        runSize?: "small" | "large" | "medium";
    }

    Hierarchy (View Summary)

    Index
    async: true
    generators: GeneratorParams
    numRuns?: undefined

    Number of runs before success: 100 by default

    Since 1.0.0

    randomType?: RandomType

    Type of random number generator to use.

    Omits ability to provide a builder function from pure-rand to avoid entraining a direct production dependency on pure-rand.

    runSize?: "small" | "large" | "medium"