To improve my quality of code, I\'ve decided to try to learn how to test my code using Unit Testing instead of my mediocre-at-best testing solutions.
For me, using phpunit --debug showed me which test it was not executing, inside, I had
$this->visit('/')
->see('Laravel');
and I think because the directory was protected with .htaccess authentication, it could not get through to visit the page
The solution for me was to take out this test (or most likely take out .htaccess authentication)