#!/usr/bin/env node // pretend we are a TTY process.stdout.isTTY = true process.stderr.isTTY = true var yargs = require('../../index') var y = yargs.command('download ', 'make a get HTTP request') .help() for (var i = 0; i < 1000; i++) { yargs.option('o' + i, { describe: 'option ' + i }) } y.parse() console.log('never get here')