Comment on Ask HN: Founders, how much automated tests do you write?Comments−leros3yI only write tests in two situations:1) mission critical parts of my system that will cause damage if they break2) small functions that I can't wrap my head around (eg some complex regex extraction)Everything else can be fixed fast with minimal damage as it comes up. My test coverage is less than 1%.
Comments
I only write tests in two situations:
1) mission critical parts of my system that will cause damage if they break
2) small functions that I can't wrap my head around (eg some complex regex extraction)
Everything else can be fixed fast with minimal damage as it comes up. My test coverage is less than 1%.