Skip to content

Commit

Permalink
test: drop runnin serially
Browse files Browse the repository at this point in the history
The tests all spin up their own service instance, this should be fine.
  • Loading branch information
wkillerud committed Aug 16, 2024
1 parent fe84fc3 commit 2dab0ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "node ./bin/eik-server.js | pino-pretty",
"test": "cross-env LOG_LEVEL=fatal tap ./test --disable-coverage --allow-empty-coverage --serial=test",
"test:ci": "cross-env LOG_LEVEL=trace tap ./test --disable-coverage --allow-empty-coverage --serial=test",
"test:snapshots": "cross-env LOG_LEVEL=fatal tap --snapshot --disable-coverage --allow-empty-coverage --serial=test",
"test": "cross-env LOG_LEVEL=fatal tap ./test --disable-coverage --allow-empty-coverage",
"test:ci": "cross-env LOG_LEVEL=trace tap ./test --disable-coverage --allow-empty-coverage",
"test:snapshots": "cross-env LOG_LEVEL=fatal tap --snapshot --disable-coverage --allow-empty-coverage",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
Expand Down

0 comments on commit 2dab0ad

Please sign in to comment.