Skip to content

Commit

Permalink
[Tests] Remove duplicate test (#12)
Browse files Browse the repository at this point in the history
Fixes #8
  • Loading branch information
wescarr authored and ljharb committed Jan 6, 2023
1 parent 34b0f1c commit 72239e6
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 72239e6

Please sign in to comment.