mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
13aeee460a
Original: fa1664e6cc
21 lines
581 B
TypeScript
Executable file
21 lines
581 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 "./io/test.ts";
|
|
import "./fs/test.ts";
|
|
import "./io/test.ts";
|
|
import "./http/test.ts";
|
|
import "./log/test.ts";
|
|
import "./media_types/test.ts";
|
|
import "./multipart/test.ts";
|
|
import "./prettier/test.ts";
|
|
import "./strings/test.ts";
|
|
import "./testing/test.ts";
|
|
import "./textproto/test.ts";
|
|
import "./toml/test.ts";
|
|
import "./ws/test.ts";
|
|
|
|
import "./testing/main.ts";
|