We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49de625 commit 7310074Copy full SHA for 7310074
tests/Feature/Filament/UserTest.php
@@ -15,7 +15,6 @@
15
describe(UserResource::class, function (): void {
16
17
it('page can display table with records without admin', function (): void {
18
-
19
$users = User::factory()
20
->count(5)
21
->create();
@@ -25,11 +24,9 @@
25
24
Livewire::test(ListUsers::class)
26
->assertCanSeeTableRecords($users)
27
->assertCountTableRecords(5);
28
29
});
30
31
it('page can display table with records without moderator', function (): void {
32
33
34
->count(3)
35
@@ -39,6 +36,5 @@
39
36
40
37
41
38
->assertCountTableRecords(3);
42
43
44
})->group('users');
0 commit comments