Skip to content

Commit

Permalink
fix: fix it.only(...) causing the #118 issue test case to run alone (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mattallty authored Oct 12, 2018
1 parent d2fc842 commit 801f667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/issues/issue-118-only-shortname-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ program


describe('Issue #118 - Unknown option --undefined', () => {
it.only('should return shortname in error text whenever longname is not provided', () => {
it('should return shortname in error text whenever longname is not provided', () => {

sinon.stub(program, 'fatalError', (err) => {
should(err.name).eql('MissingOptionError');
Expand All @@ -22,4 +22,4 @@ describe('Issue #118 - Unknown option --undefined', () => {
program.parse(makeArgv([]));

});
});
});

0 comments on commit 801f667

Please sign in to comment.