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-01 22:46:17 -05:00
|
|
|
import "logging/test.ts";
|
|
|
|
import "mkdirp/test.ts";
|
2018-12-18 18:25:49 -05:00
|
|
|
import "net/bufio_test.ts";
|
|
|
|
import "net/http_test.ts";
|
|
|
|
import "net/textproto_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-01 22:46:17 -05:00
|
|
|
import "testing/test.ts";
|
2018-12-19 10:29:39 +08:00
|
|
|
|
2019-01-01 22:46:17 -05:00
|
|
|
import { runTests, completePromise } from "net/file_server_test.ts";
|
|
|
|
|
|
|
|
const fileServer = run({
|
|
|
|
args: ["deno", "--allow-net", "net/file_server.ts", ".", "--cors"]
|
|
|
|
});
|
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();
|
|
|
|
})();
|