From 0148a5bcbc7a9312f17fa47306db33bd4312e100 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Tue, 19 Oct 2021 00:35:07 +0200 Subject: [PATCH] =?UTF-8?q?run=20network-bound=20tests=20in=20parallel=20?= =?UTF-8?q?=E2=9C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f6292ee5..35efda70 100644 --- a/package.json +++ b/package.json @@ -75,8 +75,8 @@ "lint": "eslint .", "test-unit": "tap test/*.js test/format/*.js test/parse/*.js", "test-integration": "VCR_MODE=playback tap test/e2e/*.js", - "test-integration:record": "VCR_MODE=record tap test/e2e/*.js", - "test-e2e": "VCR_OFF=true tap test/e2e/*.js", + "test-integration:record": "VCR_MODE=record tap -t60 -j16 test/e2e/*.js", + "test-e2e": "VCR_OFF=true tap -t60 -j16 test/e2e/*.js", "test": "npm run test-unit && npm run test-integration", "prepublishOnly": "npm run lint && npm test" },