From cb051d5ec71ed68c81061c03fb9e2f8bc7b438e9 Mon Sep 17 00:00:00 2001 From: "Rong Sen Ng (motss)" Date: Wed, 22 May 2019 00:18:52 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20test:=20Use=20`parallel:?= =?UTF-8?q?=20true`=20to=20enable=20parallel=20testing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.ts b/test.ts index 612a5c0..736cbc7 100644 --- a/test.ts +++ b/test.ts @@ -6,7 +6,7 @@ import "./lit_ntml/mod_test.ts"; import "./polling_observer/mod_test.ts"; async function test() { - await runTests(); + await runTests({ parallel: true }); } test();