@currents/playwright
Version:
Playwright integration and reporter for [Currents](https://currents.dev/playwright) - a cloud dashboard for debugging, troubleshooting and analysing parallel CI tests supporting Cypress and Playwright.
10 lines (7 loc) • 312 B
TypeScript
import { Reporter, FullConfig, Suite } from '@playwright/test/reporter';
declare class DiscoveryReporter implements Reporter {
onBegin(config: FullConfig<{}, {}>, suite: Suite): void;
private getFullTestSuite;
printsToStdio(): boolean;
}
export { DiscoveryReporter, DiscoveryReporter as default };