tdpw
Version:
CLI tool for uploading Playwright test reports to TestDino platform with TestDino storage support
24 lines • 719 B
TypeScript
/**
* Enhanced Upload command implementation with progress tracking
*/
import { CLIOptions, Command } from '../../types';
/**
* Main upload command that orchestrates the entire upload process
*/
export declare class UploadCommand implements Command {
readonly name = "upload";
readonly description = "Upload Playwright test reports to TestDino";
/**
* Execute the upload command with enhanced progress tracking
*/
execute(options: CLIOptions): Promise<void>;
/**
* Log verbose configuration information
*/
private logVerboseInfo;
/**
* Enhanced error handling with actionable feedback
*/
private handleUploadError;
}
//# sourceMappingURL=upload.d.ts.map