Skip to content

Commit

Permalink
test: add test for short-option followed by its value
Browse files Browse the repository at this point in the history
PR-URL: #43358
Reviewed-By: Antoine du Hamel <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Beth Griggs <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Darshan Sen <[email protected]>
Reviewed-By: Akhil Marsonya <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
cola119 committed Jun 12, 2022
1 parent 5114c46 commit 97b9180
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/parallel/test-parse-args.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ test('handles short-option groups with "short" alias configured', () => {
assert.deepStrictEqual(result, expected);
});

test('handles short-option followed by its value', () => {
const args = ['-fFILE'];
const options = { foo: { short: 'f', type: 'string' } };
const expected = { values: { __proto__: null, foo: 'FILE' }, positionals: [] };
const result = parseArgs({ strict: false, args, options });
assert.deepStrictEqual(result, expected);
});

test('Everything after a bare `--` is considered a positional argument', () => {
const args = ['--', 'barepositionals', 'mopositionals'];
const expected = { values: { __proto__: null }, positionals: ['barepositionals', 'mopositionals'] };
Expand Down

0 comments on commit 97b9180

Please sign in to comment.