Created
February 13, 2016 20:16
-
-
Save lrlna/79145b5f480bdb672ff2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it('fails with invalid command', function (done) { | |
yargs('marsupial -w 10') | |
.command('marsupial', 'wombat burrows', function (yargs, argv) { | |
console.log(argv) | |
return argv | |
}) | |
.demand(1, ['w', 'b']) | |
.strict() | |
.fail(function (msg) { | |
msg.should.equal('Missing required argument: b') | |
return done() | |
}) | |
.argv | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment