UNPKG

axe-playwright-report

Version:

Playwright + axe-core integration to run accessibility scans and build HTML dashboard reports.

11 lines (10 loc) 279 B
import type { Reporter } from '@playwright/test/reporter'; declare class AxeReporter implements Reporter { softAssert: boolean | undefined; constructor(config?: { softAssert?: boolean; }); onBegin(): void; onEnd(): void; } export default AxeReporter;