mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
a391660d2d
Original: e4485d722a
34 lines
1 KiB
TypeScript
Executable file
34 lines
1 KiB
TypeScript
Executable file
#!/usr/bin/env deno -A
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
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 "./fs/globrex_test.ts";
|
|
import "./fs/glob_test.ts";
|
|
import "./fs/exists_test.ts";
|
|
import "./fs/empty_dir_test.ts";
|
|
import "./fs/ensure_dir_test.ts";
|
|
import "./fs/ensure_file_test.ts";
|
|
import "./fs/move_test.ts";
|
|
import "./fs/read_json_test.ts";
|
|
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";
|
|
|
|
import "./testing/main.ts";
|