Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

lemmon's avatar
Level 28

PHP How to read code TDD

Hello I do not understand how to use the "laracastsdocs.test" in the browser. I have a dev server on my network and I am able to use "php artisan serve --host=192.168.1.3 --port=8080" to start a server and then I can develop, but I am trying to figure out how to run phpunit tests in the browser like @jeff_way does by entering "laracast.tests/docs/1.1/authentication. into the browser at 26:29 of movei #6 'Make Your Own Documentation Website With TDD' series 'How To Read Code' thank you

0 likes
4 replies
devfrey's avatar
devfrey
Best Answer
Level 11

They're not tests. PHPUnit tests are always run from the command line.

You're referring to the .test domain extension. Jeffrey Way uses Laravel Valet as his web server, which comes with the .test extension as a default.

1 like

Please or to participate in this conversation.