mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
19 lines
499 B
TypeScript
Executable File
19 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";
|