mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
14afad59aa
Original: 0f00676e8f
20 lines
562 B
TypeScript
Executable file
20 lines
562 B
TypeScript
Executable file
#!/usr/bin/env deno run -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/test.ts";
|
|
import "./http/test.ts";
|
|
import "./io/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";
|