Skip to content

Commit 7310074

Browse files
feat :[LAR-30] Apply lint and remove blank line
1 parent 49de625 commit 7310074

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/Feature/Filament/UserTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
describe(UserResource::class, function (): void {
1616

1717
it('page can display table with records without admin', function (): void {
18-
1918
$users = User::factory()
2019
->count(5)
2120
->create();
@@ -25,11 +24,9 @@
2524
Livewire::test(ListUsers::class)
2625
->assertCanSeeTableRecords($users)
2726
->assertCountTableRecords(5);
28-
2927
});
3028

3129
it('page can display table with records without moderator', function (): void {
32-
3330
$users = User::factory()
3431
->count(3)
3532
->create();
@@ -39,6 +36,5 @@
3936
Livewire::test(ListUsers::class)
4037
->assertCanSeeTableRecords($users)
4138
->assertCountTableRecords(3);
42-
4339
});
4440
})->group('users');

0 commit comments

Comments
 (0)