From 6fdf92d1ab532037ed628d5573e853bb61f5ea07 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sat, 21 Sep 2019 19:32:15 +0100 Subject: [PATCH] Remove //testing/main.ts (denoland/deno_std#605) Original: https://github.com/denoland/deno_std/commit/e3a33a79e6b09f47450a3bd25c5205fa6e1b641a --- testing/main.ts | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 testing/main.ts diff --git a/testing/main.ts b/testing/main.ts deleted file mode 100644 index 838266f4bb..0000000000 --- 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 { - // Testing entire test suite serially - await runTests(); -} - -main();