Skip to content

Commit

Permalink
chore: adding script to collect integ test coverage (#946)
Browse files Browse the repository at this point in the history
* chore: adding script to collect integ test coverage

* fix: addressing ERR_IMPORT_ASSERTION_TYPE_MISSING

* chore: removing comments
  • Loading branch information
bombguy authored Mar 17, 2023
1 parent f8f4c41 commit 6e1462a
Show file tree
Hide file tree
Showing 13 changed files with 82,846 additions and 81,997 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,6 @@ jobs:
wait-on: 'http://localhost:3000'
wait-on-timeout: 210
config-file: cypress.config.ts
- name: Check Integ Test Coverage
working-directory: packages/integration-test
run: node cypress/scripts/generateCoverageSummary.mjs
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@ dist/**

ui-components
packages/integration-test

#integration testing
.nyc_output
instrumented
12 changes: 12 additions & 0 deletions .nycrc
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"
]
}
Loading

0 comments on commit 6e1462a

Please sign in to comment.