I'm looking to run Laravel tests automatically, anything out there that is easy to setup and maintain?
Currently, I run a single test case to write code, after it passes, I may run the whole test class, but rarely do I run every single test in the project, I only do that after the bulk of what I want to write is done and that's where surprises may pop up.
Of course, it is already much better compared to not writing tests at all. The issue with the above is I don't always have the discipline to run project tests, that's why I'm making this post.
I mean, I'm quite new to this that I don't even know when is the best time to run all the tests. As we are working? After code is commited?
Thank you.