DEV Community

Discussion on: The ONE tip you need to actually finish side projects!

Collapse
 
mrmadhat profile image
Daniel Gregory • Edited

I find starting half way through an unfinished feature doesn't work for me because I have to spend time refreshing my memory and working out where I was up to. Something I'm trying at the moment is making the most of jest's test.todo method. I'm working on a side project where all my to-do items are written up front as test.todo('item todo') then, each day I make sure I complete at least one of my tests. Once all my to-dos are done I'll have a product that's ready to launch. At least that's the plan 🤞