BUPKIS
    Preparing search index...

    Interface PropertyTestConfigParameters

    Parameters from fc which are used in our property-based tests.

    This allows us to provide any config option for fc.property() for any of our various use-cases. These configurations are applied in a cascading manner, with variant-specific first, then config-level, then finally defaults (defined elsewhere).

    interface PropertyTestConfigParameters {
        numRuns?: undefined;
        randomType?: RandomType;
        runSize?: "small" | "large" | "medium";
    }

    Hierarchy (View Summary)

    Index
    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"