banira
    Preparing search index...

    Interface ScreenshotResult

    Outcome of a visual snapshot comparison.

    interface ScreenshotResult {
        actualPath?: string;
        baselinePath: string;
        created: boolean;
        matched: boolean;
    }
    Index

    Properties

    actualPath?: string

    Where the mismatching screenshot was written, when matched is false.

    baselinePath: string
    created: boolean

    True when no baseline existed and this run created it.

    matched: boolean

    True when the screenshot matched the baseline (or a new baseline was just written).