diff options
author | Nayeem Rahman <muhammed.9939@gmail.com> | 2019-09-21 19:32:15 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-21 14:32:15 -0400 |
commit | 6fdf92d1ab532037ed628d5573e853bb61f5ea07 (patch) | |
tree | b4190e9d0adac6a89eb036500fbbc5f3c3b78651 /testing/main.ts | |
parent | 3e9c7918c99641171110146b52ef817497bbc9c6 (diff) |
Remove //testing/main.ts (denoland/deno_std#605)
Original: https://github.com/denoland/deno_std/commit/e3a33a79e6b09f47450a3bd25c5205fa6e1b641a
Diffstat (limited to 'testing/main.ts')
-rw-r--r-- | testing/main.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/testing/main.ts b/testing/main.ts deleted file mode 100644 index 838266f4b..000000000 --- a/testing/main.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { runTests } from "./mod.ts"; - -async function main(): Promise<void> { - // Testing entire test suite serially - await runTests(); -} - -main(); |