2019-01-01 23:45:41 +00:00
|
|
|
#!/usr/bin/env deno --allow-run --allow-net --allow-write
|
2018-12-19 15:30:44 +11:00
|
|
|
import { run } from "deno";
|
2018-12-11 17:56:32 -05:00
|
|
|
|
2019-01-11 12:18:21 +11:00
|
|
|
import "colors/test.ts";
|
2019-01-03 18:19:20 +03:00
|
|
|
import "datetime/test.ts";
|
2019-01-01 22:46:17 -05:00
|
|
|
import "examples/test.ts";
|
2018-12-19 19:06:31 +01:00
|
|
|
import "flags/test.ts";
|
2019-01-13 02:07:18 +08:00
|
|
|
import "fs/mkdirp_test.ts";
|
2019-01-11 06:11:44 +08:00
|
|
|
import "fs/path/basename_test.ts";
|
|
|
|
import "fs/path/dirname_test.ts";
|
|
|
|
import "fs/path/extname_test.ts";
|
|
|
|
import "fs/path/isabsolute_test.ts";
|
|
|
|
import "fs/path/join_test.ts";
|
|
|
|
import "fs/path/parse_format_test.ts";
|
|
|
|
import "fs/path/relative_test.ts";
|
|
|
|
import "fs/path/resolve_test.ts";
|
|
|
|
import "fs/path/zero_length_strings_test.ts";
|
2019-01-12 13:50:04 -08:00
|
|
|
import "io/bufio_test.ts";
|
|
|
|
import "http/http_test.ts";
|
|
|
|
import "log/test.ts";
|
|
|
|
import "media_types/test.ts";
|
2019-01-01 22:46:17 -05:00
|
|
|
import "testing/test.ts";
|
2019-01-12 13:50:04 -08:00
|
|
|
import "textproto/test.ts";
|
|
|
|
import "ws/test.ts";
|
2018-12-19 10:29:39 +08:00
|
|
|
|
2019-01-12 13:50:04 -08:00
|
|
|
import { runTests, completePromise } from "http/file_server_test.ts";
|
2019-01-01 22:46:17 -05:00
|
|
|
|
|
|
|
const fileServer = run({
|
2019-01-12 13:50:04 -08:00
|
|
|
args: ["deno", "--allow-net", "http/file_server.ts", ".", "--cors"]
|
2019-01-01 22:46:17 -05:00
|
|
|
});
|
2019-01-01 23:45:41 +00:00
|
|
|
|
2018-12-17 22:57:45 -05:00
|
|
|
runTests(new Promise(res => setTimeout(res, 5000)));
|
2018-12-11 17:56:32 -05:00
|
|
|
(async () => {
|
|
|
|
await completePromise;
|
|
|
|
fileServer.close();
|
|
|
|
})();
|