-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add code coverage #93
base: main
Are you sure you want to change the base?
Changes from all commits
2a8f0c4
4b58b10
876f710
11e47fb
df7454a
58bdb1c
5d1c3fa
e6fa075
b0fe8ce
6533212
7fdaa28
e3d6913
bdfe42a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"all": true, | ||
"src": ["client/src", "server/src"], | ||
"exclude": ["**/node_modules/**", "client/out/test/"], | ||
"reporter": ["html", "text"], | ||
"lines": 75 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ dist | |
node_modules | ||
.vscode-test* | ||
*.vsix | ||
*.node | ||
*.node | ||
coverage/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://registry.npmjs.org |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ server/**/*.json | |
|
||
# VSCode history | ||
.history/ | ||
|
||
coverage/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,6 @@ ContributorAgreement.txt | |
.travis.yml | ||
.eslintignore | ||
pull_request_template.md | ||
.eslintrc.js | ||
.c8rc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @scnwwu agreed, will add that to the list here. |
||
coverage/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm a little confused. Does this
src
setting really take effect? If so, sounds like "client/out/test/" doesn't need to be excluded as it won't be included? I looked at latest build log, tools/build.mjs is also in the report.