diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2018-12-19 15:30:44 +1100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-18 23:30:44 -0500 |
| commit | a3d164df917536c702775af1937569825fc5ceaf (patch) | |
| tree | 13442b0e8d95049d9220c4477e3da7a941768f1a /test.ts | |
| parent | 2d58da520fffaeaee1bceeb33b6e3dc339ea68a3 (diff) | |
Add colors module (denoland/deno_std#30)
Original: https://github.com/denoland/deno_std/commit/54787f172c62df7c98d8e9e534c40e317825e614
Diffstat (limited to 'test.ts')
| -rwxr-xr-x | test.ts | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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"; |
