AutoBE
    Preparing search index...

    Interface IAutoBeTestRuntimeEndpointFailure

    Per-endpoint failure entry surfaced on IAutoBeTestRuntimeSummary.endpointFailures.

    Designed to be JSON-serializable (no Maps or class instances) so the summary round-trips through persisted histories, websocket events, and archive artifacts without custom serializers.

    interface IAutoBeTestRuntimeEndpointFailure {
        dependencyEndpoints?: string[];
        digest: string;
        endpoint: string;
        failed: number;
        failureKinds?: string[];
        failureSignature?: string;
        providerLocation?: string;
        sharedDependencyOf?: string[];
        testNames?: string[];
        topologyPhase?: number;
    }
    Index

    Properties

    dependencyEndpoints?: string[]

    Endpoint dependency chain observed in the failed test code.

    Ordered by call appearance in the test function and used to prioritize upstream real implementations before downstream failing endpoints.

    digest: string

    LLM-ready regeneration digest text for the endpoint.

    endpoint: string

    METHOD:/path identifier — uppercase method joined to the OpenAPI path.

    failed: number

    Count of failed e2e operations grouped under this endpoint.

    failureKinds?: string[]

    Compact machine-readable failure categories observed in the grouped runtime errors, such as invalid tokens, missing resources, or empty assertion errors.

    failureSignature?: string

    Stable signature used to detect repeated runtime failure loops.

    providerLocation?: string

    Realize provider file path associated with this endpoint.

    sharedDependencyOf?: string[]

    Downstream endpoint failures that share this endpoint as an upstream dependency and should inspect this implementation first.

    testNames?: string[]

    Failed runtime test function names that contributed to this entry.

    topologyPhase?: number

    Topological phase derived from the failed tests' endpoint dependencies.