effect-playwright
    Preparing search index...

    Interface TestInfoError

    Information about an error thrown during test execution.

    interface TestInfoError {
        cause?: TestInfoError;
        errorContext?: string;
        message?: string;
        stack?: string;
        value?: string;
    }
    Index

    Error cause. Set when there is a cause for the error. Will be undefined if there is no cause or if the cause is not an instance of [Error].

    errorContext?: string

    Additional context for the error, such as the aria snapshot of the receiver at the time of an expect(...) matcher failure.

    message?: string

    Error message. Set when [Error] (or its subclass) has been thrown.

    stack?: string

    Error stack. Set when [Error] (or its subclass) has been thrown.

    value?: string

    The value that was thrown. Set when anything except the [Error] (or its subclass) has been thrown.