DEV Community

Discussion on: What are your CLI go to commands and aliases?

Collapse
 
alchermd profile image
John Alcher
alias pt="vendor/bin/phpunit"
alias dt="php artisan dusk --env=dusk.local"
alias test="pt && dt"

Which roughly translates to pt = Integration + Unit Tests, dt = tests that uses a real browser (IDK the correct term for this) and test = run the whole suite.