UNPKG

@vizzly-testing/cli

Version:

Visual review platform for UI developers and designers

18 lines (17 loc) 635 B
/** * TDD command implementation * @param {string} testCommand - Test command to execute * @param {Object} options - Command options * @param {Object} globalOptions - Global CLI options * @returns {Promise<{result: Object, cleanup: Function}>} Result and cleanup function */ export function tddCommand(testCommand: string, options?: any, globalOptions?: any): Promise<{ result: any; cleanup: Function; }>; /** * Validate TDD options * @param {string} testCommand - Test command to execute * @param {Object} options - Command options */ export function validateTddOptions(testCommand: string, options: any): string[];