mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
31 lines
830 B
TypeScript
Executable File
31 lines
830 B
TypeScript
Executable File
#!/usr/bin/env deno -A
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import "benching/test.ts";
|
|
import "util/deferred_test.ts";
|
|
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";
|
|
import "io/test.ts";
|
|
import "http/server_test.ts";
|
|
import "http/file_server_test.ts";
|
|
import "http/readers_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";
|
|
|
|
import "testing/main.ts";
|