Skip to content

Commit

Permalink
Dont run tests in band
Browse files Browse the repository at this point in the history
There are no tests that require sequential execution, so just run them concurrently. Doubles the speed of tests in this case.
  • Loading branch information
stscoundrel committed Sep 7, 2024
1 parent ac4d116 commit 90fa732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"start": "next start",
"lint": "eslint src tests",
"fix": "eslint src tests --fix",
"jest": "jest --verbose --runInBand --passWithNoTests",
"jest": "jest --verbose --passWithNoTests",
"test:unit": "yarn jest",
"test:integration": "yarn cypress run --env env=test --spec 'tests/integration/tests/**/*'",
"test:coverage": "jest --coverage tests src/components --coverageThreshold='{\"global\":{\"statements\":\"90\", \"functions\":\"80\", \"branches\":\"80\", \"lines\":\"90\"}}'"
Expand Down

0 comments on commit 90fa732

Please sign in to comment.