Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
Exclude **/generated/ in coverage calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
yasaichi committed Mar 10, 2024
1 parent 0bc4ad9 commit a1c4a04
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 @@ -15,7 +15,7 @@
"lint": "deno lint",
"test": "deno test --ignore=test/ --parallel",
"test:watch": "pnpm run test --watch",
"test:cov": "pnpm run test --coverage && deno coverage && deno coverage --lcov --output=coverage/lcov.info",
"test:cov": "pnpm run test --coverage && deno coverage --exclude='/generated/' && deno coverage --exclude='/generated/' --lcov --output=coverage/lcov.info",
"test:debug": "deno test --inspect-brk=127.0.0.1:9230",
"test:e2e": "deno test --allow-env --allow-net --allow-read=. --parallel test/"
},
Expand Down

0 comments on commit a1c4a04

Please sign in to comment.