playwright-zephyr
Version:
Zephyr reporter for the Playwright
17 lines (16 loc) • 528 B
TypeScript
import type { ZephyrOptions } from './convert-status';
import type { PathLike } from 'fs';
export declare class ZephyrService {
private readonly authorizationToken;
private readonly projectKey;
private readonly testCycle;
private readonly url;
private readonly defaultRunName;
constructor(options: ZephyrOptions);
createRun(testResults: PathLike): Promise<any>;
printReportDetails(testCycle: {
key: string;
url: string;
}): void;
handleAxiosError(error: unknown): void;
}