summaryrefslogtreecommitdiff
path: root/testing/main.ts
blob: 64d7e597e674ad975d40d24e5a05ee6e2c73a939 (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() {
  // Testing entire test suite serially
  await runTests();
}

main();