Closed jmg1138 closed 2 years ago
Merging #80 (6f013d0) into main (e2b901c) will decrease coverage by
3.23%
. The diff coverage is31.25%
.
@@ Coverage Diff @@
## main #80 +/- ##
==========================================
- Coverage 25.51% 22.27% -3.24%
==========================================
Files 53 53
Lines 1646 2002 +356
Branches 209 365 +156
==========================================
+ Hits 420 446 +26
- Misses 1019 1432 +413
+ Partials 207 124 -83
Impacted Files | Coverage Δ | |
---|---|---|
src/api/controllers/user-controller.ts | 27.16% <0.00%> (-3.00%) |
:arrow_down: |
src/domain/models/err-model.ts | 31.03% <ø> (-16.03%) |
:arrow_down: |
src/test/mocks.ts | 100.00% <ø> (ø) |
|
src/service/user-service.ts | 9.91% <20.00%> (-0.52%) |
:arrow_down: |
src/api/middlewares/tokenwall.ts | 28.12% <25.00%> (+2.41%) |
:arrow_up: |
src/service/jwt-service.ts | 64.70% <47.05%> (-15.30%) |
:arrow_down: |
src/service/crypto-service.ts | 26.66% <0.00%> (-62.62%) |
:arrow_down: |
src/domain/maps/account-map.ts | 23.07% <0.00%> (-14.43%) |
:arrow_down: |
src/domain/maps/feature-map.ts | 21.73% <0.00%> (-11.60%) |
:arrow_down: |
... and 41 more |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update d328af3...6f013d0. Read the comment docs.
Simultaneous work on the API and web app to show the authenticated user a very basic page of their account details. Basic functioning example of the authorization token through the API tokenwall, and the controller only allowing read, update, or delete of a user record when the token is issued for that same user.