While reviewing our tests, I decided we can improve things a bit, by using factories more to have more reusable and shorter code in tests. Let's do exactly that, in this short lesson.
Example:
// Current$owner = User::factory()->create(['role_id' => Role::ROLE_OWNER]); // Replacing with Factory States$owner = User::factory()->owner()->create();