deno/std/flags/stop_early_test.ts
Bartek Iwańczuk 8feb30e325
BREAKING: remove overload of Deno.test() (#4951)
This commit removes overload of Deno.test() that accepted named
function.
2020-04-28 12:33:09 +02:00

16 lines
431 B
TypeScript
Executable file

// Copyright 2018-2020 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"],
});
});