arvo-event-handler
    Preparing search index...

    Type Alias ArvoTestResult

    Result of executing a single test run.

    type ArvoTestResult = {
        error?: string;
        iteration?: number;
        step?: number;
        success: boolean;
    }
    Index

    Properties

    error?: string

    Detailed error message if the test failed.

    iteration?: number

    Iteration number when using repeat configuration.

    step?: number

    Index of the last completed step (0-based).

    success: boolean

    Whether the test execution passed all steps successfully