-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: adding script to collect integ test coverage (#946)
* chore: adding script to collect integ test coverage * fix: addressing ERR_IMPORT_ASSERTION_TYPE_MISSING * chore: removing comments
- Loading branch information
Showing
13 changed files
with
82,846 additions
and
81,997 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
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 |
---|---|---|
|
@@ -55,3 +55,7 @@ dist/** | |
|
||
ui-components | ||
packages/integration-test | ||
|
||
#integration testing | ||
.nyc_output | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"all": true, | ||
"check-coverage": true, | ||
"coverageReporters": [ | ||
"json" | ||
], | ||
"exclude": [ | ||
"**/cypress.config.ts", | ||
"packages/*/index.ts" | ||
] | ||
} |
Oops, something went wrong.