1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-25 00:29:09 -05:00

Fix denoland/denodenoland/deno_std#2064 (denoland/deno_std#328)

Original: 2c119627dc
This commit is contained in:
Bartek Iwańczuk 2019-04-09 10:33:22 +02:00 committed by Ryan Dahl
parent b99f8375b2
commit 733fbfd555

View file

@ -4,8 +4,6 @@ import { runTests } from "./mod.ts";
async function main() { async function main() {
// Testing entire test suite serially // Testing entire test suite serially
await runTests(); await runTests();
// Testing parallel execution on a subset that does not depend on exec order
await runTests({ parallel: true, only: /^testing/ });
} }
main(); main();