We recently decided our project is getting too large to function well without automated tests.
While trying to write our first Laravel Dusk test for the project I found the test failing without a clear reason.
First I noticed a weird line about the SSL handshake failing but after a little bit of searching, this error wasn't getting me anywhere.
After a while, I found the option to run dusk in a way it showed the browser and its actions. Turns out my test was failing because the page it was visiting was never shown because of chrome's "Your connection is not private" page.
Then I found this post from 2017 https://laravel-news.com/chrome-63-now-forces-dev-domains-https
According to this post chrome shouldn't show this page when you are using .localhost or other unused domain extensions, I have tried the extensions .local .localhost & .test but none were successful.
Is there a way to tell chrome I don't want to see this page?