summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-04-09 10:33:22 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-04-09 04:33:22 -0400
commit733fbfd555a2db3365ac8ce19bc11e4a97fcfd47 (patch)
treee62fcfae4d7c1f2e388058022acc207599976e30 /testing
parentb99f8375b2d3abe6779e7c2c666a88b94d6d7bff (diff)
Fix denoland/denodenoland/deno_std#2064 (denoland/deno_std#328)
Original: https://github.com/denoland/deno_std/commit/2c119627dc8fa96df9b45102e019115becb94558
Diffstat (limited to 'testing')
-rw-r--r--testing/main.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/testing/main.ts b/testing/main.ts
index 00502b237..64d7e597e 100644
--- a/testing/main.ts
+++ b/testing/main.ts
@@ -4,8 +4,6 @@ import { runTests } from "./mod.ts";
async function main() {
// Testing entire test suite serially
await runTests();
- // Testing parallel execution on a subset that does not depend on exec order
- await runTests({ parallel: true, only: /^testing/ });
}
main();