summaryrefslogtreecommitdiff
path: root/flags/test.ts
diff options
context:
space:
mode:
authorAxetroy <troy450409405@gmail.com>2019-03-20 01:24:11 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-03-19 13:24:11 -0400
commitaae6ea51a496301011c41a874a25b77596d5c560 (patch)
treeedfcefbbbae67a1e59baa6a8d5d1fd5b6009dfec /flags/test.ts
parentadb19cbae366288a152dd3ab8293e5aea2edc80b (diff)
move test file out of tests dir in flags module (denoland/deno_std#293)
Original: https://github.com/denoland/deno_std/commit/e80f14489084d748bb52c4311519f5d0c7696f47
Diffstat (limited to 'flags/test.ts')
-rw-r--r--flags/test.ts26
1 files changed, 13 insertions, 13 deletions
diff --git a/flags/test.ts b/flags/test.ts
index 66aa8d2cd..f8e928555 100644
--- a/flags/test.ts
+++ b/flags/test.ts
@@ -1,14 +1,14 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import "./tests/all_bool.ts";
-import "./tests/bool.ts";
-import "./tests/dash.ts";
-import "./tests/default_bool.ts";
-import "./tests/dotted.ts";
-import "./tests/kv_short.ts";
-import "./tests/long.ts";
-import "./tests/num.ts";
-import "./tests/parse.ts";
-import "./tests/short.ts";
-import "./tests/stop_early.ts";
-import "./tests/unknown.ts";
-import "./tests/whitespace.ts";
+import "./all_bool_test.ts";
+import "./bool_test.ts";
+import "./dash_test.ts";
+import "./default_bool_test.ts";
+import "./dotted_test.ts";
+import "./kv_short_test.ts";
+import "./long_test.ts";
+import "./num_test.ts";
+import "./parse_test.ts";
+import "./short_test.ts";
+import "./stop_early_test.ts";
+import "./unknown_test.ts";
+import "./whitespace_test.ts";