Skip to content

Commit

Permalink
Remove duplicate test
Browse files Browse the repository at this point in the history
 - Fixes minimistjs#8
  • Loading branch information
wescarr committed Oct 26, 2022
1 parent 2edc957 commit 200df96
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/dash.js
Expand Up @@ -22,7 +22,6 @@ test('-a -- b', function (t) {
t.plan(3);
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 200df96

Please sign in to comment.