There was an error while loading. Please reload this page.
1 parent 0482f82 commit 2b99fc9Copy full SHA for 2b99fc9
1 file changed
tests/Feature/LoginTest.php
@@ -6,6 +6,7 @@
6
use App\Filament\Pages\Dashboard;
7
use App\Models\User;
8
use Filament\Facades\Filament;
9
+use Illuminate\Support\Str;
10
use function Pest\Livewire\livewire;
11
12
it('can render the login page', function () {
@@ -72,7 +73,8 @@
72
73
->nurse()
74
->create();
75
- collect(range(1, 5))
76
+ collect()
77
+ ->range(1, 5)
78
->each(function () use ($user) {
79
livewire(Login::class)
80
->fillForm([
0 commit comments