Skip to content

Commit

Permalink
[Tests] Remove duplicate test
Browse files Browse the repository at this point in the history
Fixes #8
  • Loading branch information
wescarr authored and ljharb committed Oct 26, 2022
1 parent 2edc957 commit 5784b17
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/dash.js
Expand Up @@ -19,10 +19,9 @@ test('-', function (t) {
});

test('-a -- b', function (t) {
t.plan(3);
t.plan(2);
t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] });
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] });
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] });
});

test('move arguments after the -- into their own `--` array', function (t) {
Expand Down

0 comments on commit 5784b17

Please sign in to comment.