mirror of
https://github.com/denoland/deno.git
synced 2025-01-22 15:10:44 -05:00
fa3f8cf67b
Original: 1abdc2efc0
18 lines
499 B
TypeScript
Executable file
18 lines
499 B
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 "fs/path/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 "prettier/main_test.ts";
|
|
import "testing/test.ts";
|
|
import "textproto/test.ts";
|
|
import "ws/test.ts";
|
|
|
|
import "testing/main.ts";
|