2019-02-09 15:41:05 -05:00
|
|
|
#!/usr/bin/env deno -A
|
2019-02-07 19:45:47 +03:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
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-02-08 20:23:51 +03:00
|
|
|
import "fs/path/test.ts";
|
|
|
|
import "io/test.ts";
|
2019-02-02 18:57:38 -05:00
|
|
|
import "http/server_test.ts";
|
2019-01-17 10:08:59 -08:00
|
|
|
import "http/file_server_test.ts";
|
2019-01-12 13:50:04 -08:00
|
|
|
import "log/test.ts";
|
|
|
|
import "media_types/test.ts";
|
2019-02-02 00:16:39 +09:00
|
|
|
import "prettier/main_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";
|
2019-01-24 16:25:13 -05:00
|
|
|
|
|
|
|
import "testing/main.ts";
|