From 4c8aeeb70c9f85028704341f99bc93a701269b52 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Sat, 19 Nov 2022 02:32:54 +0100 Subject: [PATCH] =?UTF-8?q?integration=20tests:=20don't=20record=20fixture?= =?UTF-8?q?s=20in=20parallel=20=E2=9C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 15363a02..9c2cf7b5 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "lint": "eslint .", "test-unit": "tap test/lib/*.js test/*.js test/format/*.js test/parse/*.js", "test-integration": "VCR_MODE=playback tap test/e2e/*.js", - "test-integration:record": "VCR_MODE=record tap -t60 -j16 test/e2e/*.js", + "test-integration:record": "VCR_MODE=record tap -t60 -j1 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"