summaryrefslogtreecommitdiff
path: root/std/flags/stop_early_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/flags/stop_early_test.ts')
-rwxr-xr-xstd/flags/stop_early_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/flags/stop_early_test.ts b/std/flags/stop_early_test.ts
index d1996e7aa..4b7eac097 100755
--- a/std/flags/stop_early_test.ts
+++ b/std/flags/stop_early_test.ts
@@ -5,11 +5,11 @@ import { parse } from "./mod.ts";
// stops parsing on the first non-option when stopEarly is set
Deno.test(function stopParsing(): void {
const argv = parse(["--aaa", "bbb", "ccc", "--ddd"], {
- stopEarly: true
+ stopEarly: true,
});
assertEquals(argv, {
aaa: "bbb",
- _: ["ccc", "--ddd"]
+ _: ["ccc", "--ddd"],
});
});