Skip to content

Commit

Permalink
fix: try tests without run in band
Browse files Browse the repository at this point in the history
  • Loading branch information
psteinroe committed Nov 20, 2023
1 parent dff2907 commit e7385ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/postgrest-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest --coverage --runInBand",
"test": "jest --coverage",
"clean": "rm -rf .turbo && rm -rf lint-results && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"lint": "eslint src/**",
"lint:report": "eslint {src/**,__tests__/**} --format json --output-file ./lint-results/postgrest-react-query.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/postgrest-swr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest --coverage --runInBand",
"test": "jest --coverage",
"clean": "rm -rf .turbo && rm -rf lint-results && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"lint": "eslint src/**",
"lint:report": "eslint {src/**,__tests__/**} --format json --output-file ./lint-results/postgrest-swr.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/storage-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest --coverage --runInBand",
"test": "jest --coverage",
"clean": "rm -rf .turbo && rm -rf lint-results && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"lint": "eslint {src/**,__tests__/**} --no-error-on-unmatched-pattern --ignore-pattern '__tests__/__fixtures__/*'",
"lint:report": "eslint {src/**,__tests__/**} --format json --output-file ./lint-results/storage-react-query.json --no-error-on-unmatched-pattern --ignore-pattern '__tests__/__fixtures__/*'",
Expand Down
2 changes: 1 addition & 1 deletion packages/storage-swr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest --coverage --runInBand",
"test": "jest --coverage",
"clean": "rm -rf .turbo && rm -rf lint-results && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"lint": "eslint {src/**,__tests__/**} --no-error-on-unmatched-pattern --ignore-pattern '__tests__/__fixtures__/*'",
"lint:report": "eslint {src/**,__tests__/**} --format json --output-file ./lint-results/storage-swr.json --no-error-on-unmatched-pattern --ignore-pattern '__tests__/__fixtures__/*'",
Expand Down

0 comments on commit e7385ed

Please sign in to comment.