-
Notifications
You must be signed in to change notification settings - Fork 29
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
[TU-13737] Add SonarCloud test coverage configuration #125
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
83227f1
[TU-13737] Add SonarCloud test coverage configuration
vrybas b9525d3
[TU-13737] fix ci
vrybas f2bf198
[TU-13737] fix ci p2
vrybas 4da8047
[TU-13737] reformat webhooks.ts
vrybas 50703f1
[TU-13737] fix ci p3
vrybas 88c44a8
[TU-13737] fix ci p4
vrybas 1b96311
[TU-13737] add nyc
vrybas 1cb3569
[TU-13737] add nyc-config-typescript
vrybas b9e6cc0
[TU-13737] update yarn.lock
vrybas 4e843d2
[TU-13737] fix sonar-project paths
vrybas fa0a37d
[TU-13737] indent images.ts
vrybas 0bfa80e
[TU-13737] fix sonar-project paths p2
vrybas 71db26e
[TU-13737] fix sonar-project paths p3
vrybas f3ca215
[TU-13737] fix sonar-project paths p4
vrybas 983f6a3
[TU-13737] reset modified files
vrybas 3ecb8c1
[TU-13737] fix sonar-project paths p5
vrybas ebadbb9
[TU-13737] reformat webhooks.ts
vrybas b484c2a
[TU-13737] reformat webhooks.ts
vrybas 69682cd
[TU-13737] verify lcov.info
vrybas 45abcd3
[TU-13737] reset modified files
vrybas c98d7cb
[TU-13737] simplify ci
vrybas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ yarn-error.log | |
.idea/ | ||
params.js | ||
params.json | ||
coverage* |
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,18 @@ | ||
{ | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"all": true, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.d.ts", | ||
"**/tests/**", | ||
"**/node_modules/**" | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"text-summary" | ||
], | ||
"report-dir": "./coverage", | ||
"check-coverage": false | ||
} |
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,13 @@ | ||
sonar.projectKey=Typeform_js-api-client | ||
sonar.organization=typeform | ||
sonar.projectVersion=dev | ||
|
||
sonar.sources=src | ||
sonar.tests=tests | ||
|
||
sonar.inclusions=packages/*/src/**/*.ts,src/**/*.js | ||
sonar.exclusions=node_modules/**,dist/**,**/*.spec.ts,**/*.test.ts | ||
|
||
sonar.test.exclusions=node_modules/**,dist/** | ||
|
||
sonar.javascript.lcov.reportPaths=./coverage/lcov.info |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.