Skip to content

Commit

Permalink
chore(repo): Increase jest and turbo oncurrency levels
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosdouvlis committed Oct 13, 2023
1 parent 3931156 commit c3c2f5d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
"scripts": {
"dev": "FORCE_COLOR=1 turbo dev --filter=@clerk/* --filter=!@clerk/expo",
"dev:js": "FORCE_COLOR=1 turbo dev:current --filter=@clerk/clerk-js",
"build": "FORCE_COLOR=1 turbo build --concurrency=${TURBO_CONCURRENCY:-70%}",
"test": "FORCE_COLOR=1 turbo test --concurrency=${TURBO_CONCURRENCY:-70%}",
"test:ci": "FORCE_COLOR=1 turbo test --concurrency=${TURBO_CONCURRENCY:-70%}",
"build": "FORCE_COLOR=1 turbo build --concurrency=${TURBO_CONCURRENCY:-80%}",
"test": "FORCE_COLOR=1 turbo test --concurrency=${TURBO_CONCURRENCY:-80%}",
"test:ci": "FORCE_COLOR=1 turbo test --concurrency=${TURBO_CONCURRENCY:-80%}",
"test:integration:base": "DEBUG=1 npx playwright test --config integration/playwright.config.ts",
"test:integration:generic": "E2E_APP_ID=react.vite.* npm run test:integration:base -- --grep @generic",
"test:integration:nextjs": "E2E_APP_ID=next.appRouter.withEmailCodes npm run test:integration:base -- --grep @generic",
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%",
"test:ci": "jest --maxWorkers=70%",
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html",
"prepublishOnly": "npm run build"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%",
"test:ci": "jest --maxWorkers=70%",
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html",
"watch": "webpack --config webpack.config.js --env production --watch"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%"
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "0.31.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%"
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/shared": "0.24.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%"
"test:ci": "jest --maxWorkers=70%"
},
"name": "@clerk/clerk-sdk-node",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:ci": "jest --maxWorkers=50%",
"test:ci": "jest --maxWorkers=70%",
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html"
},
"dependencies": {
Expand Down

0 comments on commit c3c2f5d

Please sign in to comment.