Skip to content

Commit

Permalink
More accurate coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
utdemir committed Jun 18, 2023
1 parent b338301 commit 3192095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
],
"scripts": {
"build": "rm -rf dist && tsc && npm run docs",
"test": "c8 --reporter=none --verbose -- tsx --no-warnings --test-reporter spec --test src/**/*.test.ts",
"test": "c8 --reporter=none --exclude 'src/test_util/*' -- tsx --no-warnings --test-reporter spec --test src/**/*.test.ts",
"test:watch": "tsx --no-warnings --test-reporter spec --test src/**/*.test.ts",
"coverage": "c8 report --reporter html --reporter text --reporter lcov",
"coverage": "c8 report --all --src src --exclude 'src/test_util' --exclude 'src/**/*.test.ts' --reporter html --reporter text --reporter lcov",
"docs": "typedoc --json ./.docs_reflection.json --emit docs ./src/index.ts --excludeInternal",
"prepack": "npm run build && cp ../README.md ."
},
Expand Down

0 comments on commit 3192095

Please sign in to comment.