mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
14 lines
343 B
TypeScript
Executable file
14 lines
343 B
TypeScript
Executable file
import { test, assertEqual } from "../../testing/mod.ts";
|
|
import { parse } from "../mod.ts";
|
|
|
|
// stops parsing on the first non-option when stopEarly is set
|
|
test(function stopParsing() {
|
|
const argv = parse(["--aaa", "bbb", "ccc", "--ddd"], {
|
|
stopEarly: true
|
|
});
|
|
|
|
assertEqual(argv, {
|
|
aaa: "bbb",
|
|
_: ["ccc", "--ddd"]
|
|
});
|
|
});
|