-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #647 from antip00/master
Adding code coverage reports. [WIP]
- Loading branch information
Showing
16 changed files
with
1,590 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
instrumented/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"_comment": "this is file for create instrumented version of module.js to allow get coverage", | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"all": true, | ||
"extension": [".ts", ".tsx"], | ||
"report-dir": "api_coverage", | ||
"reporter": [ | ||
"html", | ||
"lcov", | ||
"text", | ||
"text-summary" | ||
], | ||
"include": ["src/**/*.ts", "src/**/*.tsx"], | ||
"exclude": [ | ||
"src/**/*jest.*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.