2019-02-09 15:41:05 -05:00
|
|
|
#!/usr/bin/env deno -A
|
2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./colors/test.ts";
|
|
|
|
import "./datetime/test.ts";
|
|
|
|
import "./examples/test.ts";
|
|
|
|
import "./flags/test.ts";
|
|
|
|
import "./io/bufio_test.ts";
|
|
|
|
import "./io/ioutil_test.ts";
|
|
|
|
import "./io/util_test.ts";
|
|
|
|
import "./io/writers_test.ts";
|
|
|
|
import "./io/readers_test.ts";
|
|
|
|
import "./fs/path/test.ts";
|
|
|
|
import "./fs/walk_test.ts";
|
2019-03-02 14:56:19 -05:00
|
|
|
import "./fs/globrex_test.ts";
|
|
|
|
import "./fs/glob_test.ts";
|
2019-03-11 13:14:26 -04:00
|
|
|
import "./fs/exists_test.ts";
|
2019-03-11 14:19:52 -04:00
|
|
|
import "./fs/empty_dir_test.ts";
|
2019-03-12 01:52:43 -04:00
|
|
|
import "./fs/ensure_dir_test.ts";
|
|
|
|
import "./fs/ensure_file_test.ts";
|
2019-03-12 05:11:30 -04:00
|
|
|
import "./fs/move_test.ts";
|
2019-03-13 12:06:40 -04:00
|
|
|
import "./fs/read_json_test.ts";
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./io/test.ts";
|
|
|
|
import "./http/server_test.ts";
|
|
|
|
import "./http/file_server_test.ts";
|
|
|
|
import "./log/test.ts";
|
|
|
|
import "./media_types/test.ts";
|
|
|
|
import "./multipart/formfile_test.ts";
|
|
|
|
import "./multipart/multipart_test.ts";
|
|
|
|
import "./prettier/main_test.ts";
|
|
|
|
import "./testing/test.ts";
|
|
|
|
import "./textproto/test.ts";
|
|
|
|
import "./ws/test.ts";
|
2019-01-24 16:25:13 -05:00
|
|
|
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./testing/main.ts";
|