UNPKG

playwright-msteams-reporter-conditional

Version:

Microsoft Teams reporter for Playwright which allows you to send notifications about the status of your E2E tests.

5 lines (4 loc) 233 B
import { Suite } from "@playwright/test/reporter"; import { TestStatuses } from "../models"; export declare const getFailedTests: (suites: Suite[]) => string[]; export declare const getTotalStatus: (suites: Suite[]) => TestStatuses;