BUPKIS
    Preparing search index...

    Interface PropertyTestHarnessContext

    Context for creating a property test harness.

    Contains the expect functions that will be used to test assertions.

    The parameters are intentionally typed as any: the harness is a deliberate escape hatch that fires runtime-generated values at expect/expectAsync, so it cannot satisfy their compile-time assertion-chain validation (which "poisons" the subject parameter to reject invalid chains). any is the only type assignable in both directions — from the strict Expect/ExpectAsync function values into this slot, and from this slot back out to arbitrary subject/argument calls inside the harness.

    interface PropertyTestHarnessContext {
        expect: (value: any, ...args: any[]) => void;
        expectAsync: (value: any, ...args: any[]) => Promise<void>;
    }
    Index
    expect: (value: any, ...args: any[]) => void
    expectAsync: (value: any, ...args: any[]) => Promise<void>