@yuantest/playwright - v1.2.1
    正在准备搜索索引...

    接口 ProgressMessage

    interface ProgressMessage {
        type:
            | "stdout"
            | "stderr"
            | "begin"
            | "testBegin"
            | "testEnd"
            | "end"
            | "globalError";
        totalTests?: number;
        test?: {
            id: string;
            title: string;
            fullTitle?: string;
            suiteTitle: string;
            status: string;
            duration: number;
            error?: string;
            retries: number;
            browser: string;
            file?: string;
            line?: number;
            column?: number;
            attachments: PlaywrightJSONAttachment[];
        };
        text?: string;
        consoleLogs?: string[];
        passed?: number;
        failed?: number;
        skipped?: number;
        unexpected?: number;
        message?: string;
        stack?: string;
    }
    索引

    属性

    type:
        | "stdout"
        | "stderr"
        | "begin"
        | "testBegin"
        | "testEnd"
        | "end"
        | "globalError"
    totalTests?: number
    test?: {
        id: string;
        title: string;
        fullTitle?: string;
        suiteTitle: string;
        status: string;
        duration: number;
        error?: string;
        retries: number;
        browser: string;
        file?: string;
        line?: number;
        column?: number;
        attachments: PlaywrightJSONAttachment[];
    }
    text?: string
    consoleLogs?: string[]
    passed?: number
    failed?: number
    skipped?: number
    unexpected?: number
    message?: string
    stack?: string