Skip to content

Commit a24e805

Browse files
Filmbostock
andauthoredAug 21, 2023
Add test coverage (#1818)
* test coverage with c8 * use npx for c8 --------- Co-authored-by: Mike Bostock <[email protected]>
1 parent 8b9016a commit a24e805

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
coverage/
23
dist/
34
docs/.vitepress/cache
45
docs/.vitepress/dist

‎package.json

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
],
2929
"scripts": {
3030
"test": "yarn test:mocha && yarn test:tsc && yarn test:lint && yarn test:prettier",
31+
"test:coverage": "npx c8 yarn test:mocha",
3132
"test:mocha": "mkdir -p test/output && mocha 'test/**/*-test.*' 'test/plot.js'",
3233
"test:lint": "eslint src test",
3334
"test:prettier": "prettier --check src test",
@@ -74,6 +75,11 @@
7475
"vite": "4.4.7",
7576
"vitepress": "1.0.0-beta.7"
7677
},
78+
"c8": {
79+
"all": true,
80+
"include": ["src/**/*.js"],
81+
"reporter": ["text", "lcov"]
82+
},
7783
"dependencies": {
7884
"d3": "^7.8.0",
7985
"interval-tree-1d": "^1.0.0",

0 commit comments

Comments
 (0)