@vizzly-testing/cli
Version:
Visual review platform for UI developers and designers
17 lines (16 loc) • 552 B
TypeScript
/**
* Run command implementation
* @param {string} testCommand - Test command to execute
* @param {Object} options - Command options
* @param {Object} globalOptions - Global CLI options
*/
export function runCommand(testCommand: string, options?: any, globalOptions?: any): Promise<{
success: boolean;
exitCode: number;
}>;
/**
* Validate run options
* @param {string} testCommand - Test command to execute
* @param {Object} options - Command options
*/
export function validateRunOptions(testCommand: string, options: any): string[];