FilamentF
Filament15mo ago
rabol

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
artisan make:filament-panel dashboard 


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

php artisan test


and 2-3 test will fail

is there a recommend way to avoid this ?
Was this page helpful?