summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-12-19 15:30:44 +1100
committerRyan Dahl <ry@tinyclouds.org>2018-12-18 23:30:44 -0500
commita3d164df917536c702775af1937569825fc5ceaf (patch)
tree13442b0e8d95049d9220c4477e3da7a941768f1a /test.ts
parent2d58da520fffaeaee1bceeb33b6e3dc339ea68a3 (diff)
Add colors module (denoland/deno_std#30)
Original: https://github.com/denoland/deno_std/commit/54787f172c62df7c98d8e9e534c40e317825e614
Diffstat (limited to 'test.ts')
-rwxr-xr-xtest.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/test.ts b/test.ts
index 54413ecd9..1155202d1 100755
--- a/test.ts
+++ b/test.ts
@@ -1,6 +1,10 @@
#!/usr/bin/env deno --allow-run --allow-net
-import { run, exit } from "deno";
+import { run } from "deno";
+// colors tests
+import "colors/main_test.ts";
+
+// net tests
import "net/bufio_test.ts";
import "net/http_test.ts";
import "net/textproto_test.ts";