summaryrefslogtreecommitdiff
path: root/flags/short_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'flags/short_test.ts')
-rwxr-xr-xflags/short_test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/flags/short_test.ts b/flags/short_test.ts
index 700902dd7..f624381b1 100755
--- a/flags/short_test.ts
+++ b/flags/short_test.ts
@@ -3,12 +3,12 @@ import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
-test(function numbericShortArgs() {
+test(function numbericShortArgs(): void {
assertEquals(parse(["-n123"]), { n: 123, _: [] });
assertEquals(parse(["-123", "456"]), { 1: true, 2: true, 3: 456, _: [] });
});
-test(function short() {
+test(function short(): void {
assertEquals(parse(["-b"]), { b: true, _: [] });
assertEquals(parse(["foo", "bar", "baz"]), { _: ["foo", "bar", "baz"] });
assertEquals(parse(["-cats"]), { c: true, a: true, t: true, s: true, _: [] });
@@ -27,7 +27,7 @@ test(function short() {
});
});
-test(function mixedShortBoolAndCapture() {
+test(function mixedShortBoolAndCapture(): void {
assertEquals(parse(["-h", "localhost", "-fp", "555", "script.js"]), {
f: true,
p: 555,
@@ -36,7 +36,7 @@ test(function mixedShortBoolAndCapture() {
});
});
-test(function shortAndLong() {
+test(function shortAndLong(): void {
assertEquals(parse(["-h", "localhost", "-fp", "555", "script.js"]), {
f: true,
p: 555,