@estruyf/github-actions-reporter
Version:
GitHub Actions reporter for Playwright
12 lines (11 loc) • 541 B
TypeScript
import { TestCase } from "@playwright/test/reporter";
import { BlobService, DisplayLevel } from "../models/index.js";
interface SummaryTableCell {
data: string;
header?: boolean;
colspan?: string;
rowspan?: string;
}
type SummaryTableRow = (SummaryTableCell | string)[];
export declare const getTableRows: (tests: TestCase[], showAnnotations: boolean, showTags: boolean, showError: boolean, displayLevel: DisplayLevel[], showAnnotationsInColumn?: boolean, blobService?: BlobService) => Promise<SummaryTableRow[]>;
export {};