DEV Community

Discussion on: Debugging with Git

Collapse
 
hoelzro profile image
Rob Hoelz

You can also use git bisect run to have Git run your tests - that way if your test suite takes a while, you can leave and make yourself a sandwich or something. When you get back, Git will have done all the work for you!

Thread Thread
 
maestromac profile image
Mac Siri

Well this change everything. Thanks!