UNPKG

playwright-testrail-sync

Version:

TestRail Integration for Playwright with comprehensive logging and error handling

22 lines 894 B
/** * Reporter options builder * Handles creation of reporter options from configuration */ import { PlaywrightTestRailSyncOptions } from "../types"; /** * Create reporter options from environment variables */ export declare function createReporterOptionsFromEnv(): PlaywrightTestRailSyncOptions; /** * Create reporter options with custom TestRail config */ export declare function createReporterOptionsWithTestRailConfig(testRailConfig: any): PlaywrightTestRailSyncOptions; /** * Create reporter options with custom logging config */ export declare function createReporterOptionsWithLoggingConfig(loggingConfig: any): PlaywrightTestRailSyncOptions; /** * Create reporter options with custom attachments config */ export declare function createReporterOptionsWithAttachmentsConfig(attachmentsConfig: any): PlaywrightTestRailSyncOptions; //# sourceMappingURL=reporter-options.d.ts.map