appwright
Version:
E2E mobile app testing done right, with the Playwright test runner
13 lines • 525 B
TypeScript
import type { Reporter, TestCase, TestResult } from "@playwright/test/reporter";
declare class VideoDownloader implements Reporter {
private downloadPromises;
onBegin(): void;
onTestBegin(test: TestCase, result: TestResult): void;
onTestEnd(test: TestCase, result: TestResult): void;
onEnd(): Promise<void>;
private trimAndAttachPersistentDeviceVideo;
private downloadAndAttachDeviceVideo;
private providerSupportsVideo;
}
export default VideoDownloader;
//# sourceMappingURL=reporter.d.ts.map