yargs-get-help
Get the help output from a yargs instance.
This module is very handy when you are developing tests for a project that has a CLI, specially when used in conjunction with snapshot testing.
Installation
$ npm install yargs-get-help
Usage
getHelp(yargs, [options])
;; yargs; const help = ;// `help` will contain yargs `$0 --help` output as a string
getHelp(yargs, [args], [options])
;; yargs; const help = ;// `help` will contain yargs `$0 serve --help` output as a string
Available options:
normalize
: Normalizes the output, unifying things like terminal sizes, locale, $0 and ansi-codes (defaults totrue
)
NOTE: This package mutates the passed yargs
instance. If this is a problem, please consider using yargs/yargs instead.
Tests
$ npm test
$ npm test -- --watch
during development