BUPKIS
    Preparing search index...

    Type Alias ExpectationResult

    ExpectationResult:
        | { error: unknown; failed: true }
        | { error?: never; failed?: false }

    Result type for expectation functions used in property-based tests.

    Represents either a successful expectation (failed: false) or a failed expectation with error details (failed: true, error: unknown).