IMO, unit/integration/mock tests are primarily for...
# dev-ops
c
IMO, unit/integration/mock tests are primarily for future engineers to understand your code and get feedback when they want to change or alter something, and secondly it is your own regression/sanity check testing. Jest is the best by far, but you can easily reduce its dependence 50% by leaning on TypeScript
💯 1