Anyone have any opinions on code coverage tools? I...
# help
o
Anyone have any opinions on code coverage tools? I’ve heard of code climate and codecov. Any other options I should consider?
a
SST bundles, for now, JEST for unit testing. JEST includes coverage reporting, you just have to turn it on.
o
Yeah we're outputting jest coverage - but it's nice to have it in PRs and track it over time
r
I've been all in on vitest for my SST projects, just skipped all the jest stuff totally. It's coverage is done with c8 (https://vitest.dev/guide/features.html)
t
I need to setup vitest