Skip to content

Commit

Permalink
Re-enable coverage for many libs (#258)
Browse files Browse the repository at this point in the history
* ci: re-enable coverage for consumption

* ci: re-enable coverage for runtime

* ci: re-enable coverage for transport
  • Loading branch information
jkoenig134 authored Aug 29, 2024
1 parent 30f0405 commit c1c9e0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/consumption/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"cdep": "tsc && madge --circular dist",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"test:ci": "npm run test",
"test:ci:lokijs": "USE_LOKIJS=true jest -i",
"test:ci:mongodb": "jest -i --coverage",
"test:ci:lokijs": "USE_LOKIJS=true jest -i --coverage",
"test:ci:mongodb": "jest -i",
"test:local:ferretdb": "npm run test:local:start:ferretdb && CONNECTION_STRING='mongodb://localhost:27022' jest",
"test:local:lokijs": "USE_LOKIJS=true jest",
"test:local:mongodb": "npm run test:local:start:mongodb && CONNECTION_STRING='mongodb://root:example@localhost:27021' jest",
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build:schemas": "node scripts/buildSchemas.mjs",
"cdep": "tsc && madge --circular dist",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"test:ci:lokijs": "USE_LOKIJS=true jest -i",
"test:ci:lokijs": "USE_LOKIJS=true jest -i --coverage",
"test:ci:mongodb": "jest -i --coverage",
"test:local:ferretdb": "npm run test:local:start:ferretdb && CONNECTION_STRING='mongodb://localhost:27022' jest",
"test:local:lokijs": "USE_LOKIJS=true jest",
Expand Down
4 changes: 2 additions & 2 deletions packages/transport/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"cdep": "tsc && madge --circular dist",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"test:ci": "npm run test:ci:lokijs && npm run test:ci:mongodb",
"test:ci:lokijs": "USE_LOKIJS=true jest -i",
"test:ci:mongodb": "jest -i --coverage",
"test:ci:lokijs": "USE_LOKIJS=true jest -i --coverage",
"test:ci:mongodb": "jest -i",
"test:local:ferretdb": "npm run test:local:start:ferretdb && CONNECTION_STRING='mongodb://localhost:27022' jest",
"test:local:lokijs": "USE_LOKIJS=true jest",
"test:local:mongodb": "npm run test:local:start:mongodb && CONNECTION_STRING='mongodb://root:example@localhost:27021' jest",
Expand Down

0 comments on commit c1c9e0a

Please sign in to comment.