-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fail when using same command and alias
- Loading branch information
1 parent
5c74431
commit e636703
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
var program = require('../') | ||
, should = require('should'); | ||
|
||
var error; | ||
|
||
try { | ||
program | ||
.command('fail') | ||
.alias('fail'); | ||
} catch (e) { | ||
error = e; | ||
} | ||
|
||
error.should.deepEqual(new Error('Command alias can\'t be the same as its name')); |