UNPKG

@chtsinc/ch-playwright-report

Version:

Custom Playwright Reporter that logs test and execution results to MongoDB

14 lines (13 loc) 352 B
import { TestResult } from "@playwright/test/reporter"; export declare class TestStatusSummaryUtil { private pass; private fail; private skip; private other; addResult(result: TestResult): void; getSummary(): Record<string, number>; getPass(): number; getFail(): number; getSkip(): number; getOther(): number; }