From 733fbfd555a2db3365ac8ce19bc11e4a97fcfd47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 9 Apr 2019 10:33:22 +0200 Subject: [PATCH] Fix denoland/denodenoland/deno_std#2064 (denoland/deno_std#328) Original: https://github.com/denoland/deno_std/commit/2c119627dc8fa96df9b45102e019115becb94558 --- testing/main.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/testing/main.ts b/testing/main.ts index 00502b2377..64d7e597e6 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();