integration tests: don't record fixtures in parallel

This commit is contained in:
Jannis R 2022-11-19 02:32:54 +01:00
parent 0d965c585d
commit 4c8aeeb70c
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5

View file

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