summaryrefslogtreecommitdiff
path: root/testing/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'testing/main.ts')
-rw-r--r--testing/main.ts9
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();