/** * Copy trace viewer to the report folder. */ import * as messages from '@cucumber/messages'; export declare function copyTraceViewer(reportDir: string): Promise; export declare function isTraceAttachment(attachment: messages.Attachment): boolean; export declare function generateTraceUrl(attachment: messages.Attachment): string; export declare function createViewTraceLinkAttachment(testCaseStartedId: string | undefined, testStepId: string | undefined, href: string): { attachment: messages.Attachment; }; /** * Custom css and script for 'View trace' links. * Update link href to pass full trace URL. * Use 'onmousedown' to update href for right-click + open in new tab. * Maybe it will be implemented in Playwright: * https://github.com/microsoft/playwright/issues/34493 */ export declare const assetsViewTraceLinks = "\n\n\n"; //# sourceMappingURL=traceViewer.d.ts.map