Filament Test
Good evening, can anyone help with filament test using pest. I wanted to test the dashboard panel login. For examples can't be accessed by guest and redirect it to the login page.
use Filament\Pages;
it('redirects to login', function () {
get(Pages\Dashboard::getUrl())
->assertRedirect('/admin/login');
});