run network-bound tests in parallel

This commit is contained in:
Jannis R 2021-10-19 00:35:07 +02:00
parent b616330523
commit 0148a5bcbc
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5

View file

@ -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"
},