UNPKG

@testomatio/reporter

Version:
26 lines (25 loc) 659 B
/** * Fetches links from stdout. Returns links and filtered stdout (without data containing markers) * * @param {(string | Buffer)[]} stdout * @returns {{ * links: { [key: 'test' | 'jira' | 'label']: string }[], * meta: { [key: string]: any }, * stdout: (string | Buffer)[] * }} */ export function fetchLinksFromLogs(stdout: (string | Buffer)[]): { links: { [key: "test" | "jira" | "label"]: string; }[]; meta: { [key: string]: any; }; stdout: (string | Buffer)[]; }; export namespace playwrightLogsMarkers { let label: string; let meta: string; let linkTest: string; let linkJira: string; }