Skip to content

Instantly share code, notes, and snippets.

@mohammadYousefiDev
Last active October 2, 2021 15:29
Show Gist options
  • Save mohammadYousefiDev/0e13a81cde02abc84c4f648878983db1 to your computer and use it in GitHub Desktop.
Save mohammadYousefiDev/0e13a81cde02abc84c4f648878983db1 to your computer and use it in GitHub Desktop.
laravel artisan test command falgs
php artisan make:test MyTest //create a feature test
php artisan make:test MyTest --unit //create a unit test
php artisan test --testsuite=Feature //run just features test
php artisan test --testsuite=Unit //run just unit test
php artisan --stop-on-failure //stop if a test failured
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment