mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
4ab0e0e918
Original: bd46d60ded
24 lines
674 B
TypeScript
Executable file
24 lines
674 B
TypeScript
Executable file
#!/usr/bin/env deno run -A
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import "./archive/tar_test.ts";
|
|
import "./bytes/test.ts";
|
|
import "./colors/test.ts";
|
|
import "./datetime/test.ts";
|
|
import "./encoding/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 "./mime/test.ts";
|
|
import "./multipart/test.ts";
|
|
import "./prettier/test.ts";
|
|
import "./strings/test.ts";
|
|
import "./testing/test.ts";
|
|
import "./textproto/test.ts";
|
|
import "./util/test.ts";
|
|
import "./ws/test.ts";
|
|
|
|
import "./testing/main.ts";
|