- changed limits for item list #171

Merged
kamilniemczycki merged 3 commits from change-limits into main 2022-06-15 10:14:59 +02:00
Showing only changes of commit b312f9b764 - Show all commits

View File

@ -73,10 +73,10 @@ class UserTest extends FeatureTestCase
public function testUserListIsPaginated(): void
{
User::factory()->count(15)->create();
User::factory()->count(50)->create();
$admin = User::factory()->admin()->create();
$this->assertDatabaseCount("users", 16);
$this->assertDatabaseCount("users", 51);
$this->actingAs($admin)
->get("/users?page=2")