Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
test: limit concurrency to 1
Browse files Browse the repository at this point in the history
This was changed in Tap 13; we just upgraded 12 -> 14.

Parallelism causes issues with the way we use nock(),
which picks up requests from multiple tests running
concurrently, yielding confusing and wrong results.

The tests aren't super slow anyway, so just leave it off.
  • Loading branch information
FauxFaux committed Aug 29, 2019
1 parent c53384a commit 8ef98c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -16,7 +16,7 @@
"scripts": {
"dump": "node test/dump.js",
"start": "node demo/index.js",
"test": "npm run lint && tap ./test/*.test.js -R spec",
"test": "npm run lint && tap --jobs 1 ./test/*.test.js -R spec",
"lint": "eslint -c .eslintrc lib"
},
"keywords": [
Expand Down

0 comments on commit 8ef98c8

Please sign in to comment.