diff --git a/tests/openIssues.test.js.skip b/tests/openIssues.test.js.skip deleted file mode 100644 index 708ff9577..000000000 --- a/tests/openIssues.test.js.skip +++ /dev/null @@ -1,16 +0,0 @@ -const commander = require('../'); - -describe('open issues', () => { - // https://github.com/tj/commander.js/issues/561 - test('#561: when specify argument and unknown option with no action handler then error', () => { - const program = new commander.Command(); - program - .exitOverride() - .option('-x, --x-flag', 'A flag') - .arguments(''); - - expect(() => { - program.parse(['node', 'test', '1', '--NONSENSE', '2', '3']); - }).toThrow(); - }); -});