UNPKG

playwright-testrail-sync

Version:

TestRail Integration for Playwright with comprehensive logging and error handling

15 lines 665 B
/** * Attachment handler * Handles file attachment operations for TestRail */ import { TestRailAttachment } from "../types"; import { TestRailLogger } from "../logging"; /** * Add attachment to a test result */ export declare function addAttachmentToResult(resultId: number, filePath: string, fileName: string | undefined, apiClient: any, logger: TestRailLogger): Promise<TestRailAttachment>; /** * Add attachment to a test case */ export declare function addAttachmentToCase(caseId: number, filePath: string, fileName: string | undefined, apiClient: any, logger: TestRailLogger): Promise<TestRailAttachment>; //# sourceMappingURL=attachment-handler.d.ts.map