admin = User::factory()->admin()->create(); $this->actingAs($this->admin); }); it('renders the brent price list', function () { $prices = BrentPrice::factory()->count(3)->create(); Livewire::test(ListBrentPrices::class) ->assertOk() ->assertCanSeeTableRecords($prices); });