UNPKG

playwright-testrail-sync

Version:

TestRail Integration for Playwright with comprehensive logging and error handling

15 lines 510 B
/** * Result formatter * Handles result formatting and comment generation */ import { TestCase, TestResult } from "@playwright/test/reporter"; /** * Generate test comment with metadata */ export declare function generateTestCommentWithMetadata(test: TestCase, result: TestResult): string; /** * Format elapsed time for TestRail * TestRail expects elapsed time in seconds as a string */ export declare function formatElapsedTime(duration?: number): string; //# sourceMappingURL=result-formatter.d.ts.map