blob: 838266f4bb6474a80b5b4e1edc6f2afb977cf5b4 (
plain)
1
2
3
4
5
6
7
8
9
|
// 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();
|