@currents/playwright
Version:
[Currents](https://currents.dev/playwright) is the most popular and advanced cloud-based platform for Playwright - debugging, error analysis, real-time analytics, orchestration, and more
11 lines (8 loc) • 360 B
TypeScript
import { Reporter, FullConfig, Suite, TestError } from '@playwright/test/reporter';
declare class DiscoveryReporter implements Reporter {
onBegin(config: FullConfig<{}, {}>, suite: Suite): void;
onError(error: TestError): void;
private getFullTestSuite;
printsToStdio(): boolean;
}
export { DiscoveryReporter, DiscoveryReporter as default };