DEV Community

Discussion on: How would you convince your company to implement unit tests?

Collapse
 
rhymes profile image
rhymes • Edited

Do they have functional / integration tests or no tests at all? Unit tests might not be worth it in some scenarios, especially if you have to deal with a legacy app with no tests.

I would bring up the rate of bugs and regressions and start from there. In the meantime you can start testing your code and maybe start adding those few tests in the CI pipeline.

Collapse
 
manu profile image
Manu Lopez

Thanks for the comment! I think the rate of bugs is a very good point.