@estruyf/github-actions-reporter
Version:
GitHub Actions reporter for Playwright
5 lines (4 loc) • 413 B
TypeScript
import { SummaryTableRow } from "@actions/core/lib/summary";
import { TestCase } from "@playwright/test/reporter";
import { BlobService, DisplayLevel } from "../models";
export declare const getTableRows: (tests: TestCase[], showAnnotations: boolean, showTags: boolean, showError: boolean, displayLevel: DisplayLevel[], showAnnotationsInColumn?: boolean, blobService?: BlobService) => Promise<SummaryTableRow[]>;