export const cli = (program) => program .command('export-testkits') .description('Generate testkit export file') .option( '--output ', 'Mandatory option to set where to write testkit exports file', ) .option( '--definitions ', 'Path to testkit definitions. Default is ".wuf/testkit-definitions.js"', ) .option( '--components ', 'Path to components.json file. Default is ".wuf/components.json"', ) .option( '--template ', 'Path ejs template file. Default is ".wuf/testkits/template.ejs"', );