BUPKIS
    Preparing search index...

    Interface PropertyTestConfigVariantAsyncProperty<T>

    Variant configuration using a custom async fast-check property.

    Use this when generator-based testing is insufficient and you need full control over the property logic, such as testing complex async flows or assertions that require special setup/teardown.

    interface PropertyTestConfigVariantAsyncProperty<T = any> {
        asyncProperty: () => IAsyncProperty<T> | IAsyncPropertyWithHooks<T>;
        numRuns?: undefined;
        runSize?: "small" | "medium" | "large";
    }

    Type Parameters

    • T = any

    Hierarchy (View Summary)

    Index

    Properties

    asyncProperty: () => IAsyncProperty<T> | IAsyncPropertyWithHooks<T>
    numRuns?: undefined

    Number of runs before success: 100 by default

    Since 1.0.0

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