KC's Workspace
    Preparing search index...

    Interface FailureScreenshotArtifactAttachment

    Represents a file or data attachment associated with a test artifact.

    Attachments can be either file-based (via path) or inline content (via body). The contentType helps consumers understand how to interpret the attachment data.

    interface FailureScreenshotArtifactAttachment {
        body?: undefined;
        contentType?: string;
        originalPath: string;
        path: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body?: undefined

    Inline attachment content as a string or raw binary data

    contentType?: string

    MIME type of the attachment (e.g., 'image/png', 'text/plain')

    originalPath: string

    Original file system path to the screenshot, before attachment resolution

    path: string

    File system path to the attachment