0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Updated coverage excemption list

Removed the wrapper class for the email service from coverage, because this only wires up a lot of dependencies, which is hard to test in a unit test because we also have to init all the dependencies in a unit test. It is already covered by E2E tests.
This commit is contained in:
Simon Backx 2023-02-17 14:27:59 +01:00
parent ec3f262ea4
commit ffc0cc020a

View file

@ -31,6 +31,7 @@
"core/server/api/endpoints/**",
"!core/server/api/endpoints/utils",
"core/server/services/email-analytics/jobs/**",
"core/server/services/members/jobs/**"
"core/server/services/members/jobs/**",
"core/server/services/email-service/wrapper.js"
]
}