blob: 2a62008b7033a0f83557a536a8c208a13c17d184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { test, assertEqual } from "https://deno.land/x/testing/testing.ts";
import parseArgs from "../index.ts";
// stops parsing on the first non-option when stopEarly is set
test(function stopParsing() {
const argv = parseArgs(['--aaa', 'bbb', 'ccc', '--ddd'], {
stopEarly: true
});
assertEqual(argv, {
aaa: 'bbb',
_: ['ccc', '--ddd']
});
});
|