How can I avoid pest tests failing if I install frontend panel with the id dashboard
Install a new Laravel app, with Jetstream as the starterkit and pest. Install Filament and create a new panel for the users dashboard.
First run php artisan test and make sure that all tests are passing
then
for the dashboard to work, you have to remove the 'jetstream' dashboard route from your web.php, then you have to modify a few view's
then run
and 2-3 test will fail
is there a recommend way to avoid this ?
First run php artisan test and make sure that all tests are passing
then
for the dashboard to work, you have to remove the 'jetstream' dashboard route from your web.php, then you have to modify a few view's
then run
and 2-3 test will fail
is there a recommend way to avoid this ?