2019-02-09 15:41:05 -05:00
|
|
|
#!/usr/bin/env deno -A
|
2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./colors/test.ts";
|
|
|
|
import "./datetime/test.ts";
|
|
|
|
import "./examples/test.ts";
|
|
|
|
import "./flags/test.ts";
|
|
|
|
import "./io/test.ts";
|
2019-03-18 12:49:54 -04:00
|
|
|
import "./fs/test.ts";
|
|
|
|
import "./io/test.ts";
|
|
|
|
import "./http/test.ts";
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./log/test.ts";
|
|
|
|
import "./media_types/test.ts";
|
2019-03-18 12:49:54 -04:00
|
|
|
import "./multipart/test.ts";
|
|
|
|
import "./prettier/test.ts";
|
|
|
|
import "./strings/test.ts";
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./testing/test.ts";
|
|
|
|
import "./textproto/test.ts";
|
|
|
|
import "./ws/test.ts";
|
2019-01-24 16:25:13 -05:00
|
|
|
|
2019-02-23 11:13:54 -05:00
|
|
|
import "./testing/main.ts";
|