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.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/std/flags/stop_early_test.ts b/std/flags/stop_early_test.ts
deleted file mode 100755
index f7e23881a..000000000
--- a/std/flags/stop_early_test.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import { assertEquals } from "../testing/asserts.ts";
-import { parse } from "./mod.ts";
-
-// stops parsing on the first non-option when stopEarly is set
-Deno.test("stopParsing", function (): void {
- const argv = parse(["--aaa", "bbb", "ccc", "--ddd"], {
- stopEarly: true,
- });
-
- assertEquals(argv, {
- aaa: "bbb",
- _: ["ccc", "--ddd"],
- });
-});