UNPKG

tdpw

Version:

CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support

31 lines 562 B
/** * CI metadata structure */ export interface CiMetadata { provider: string; pipeline: { id?: string; name?: string; url?: string; }; build: { number?: string; trigger?: string; }; environment: { name?: string; type?: string; os?: string; node?: string; }; } /** * Collector for CI metadata */ export declare class CiCollector { /** * Gather CI metadata from environment */ static collect(): CiMetadata; } //# sourceMappingURL=ci.d.ts.map