DEV Community

Discussion on: How do you test your side projects?

Collapse
 
avalander profile image
Avalander

When I start a side project, my first goal is to have something up and running that sorta has the basic functionality of what I want to build. Until that point, I don't write tests.

Once I reach that point, I try to write unit and integration tests covering the work done and try to use TDD for any further work. If it's a web application, I might use cypress for end to end testing as well.