Define tenant in PestPHP test

I'm writing a test to check if it can render my list page, i'm using this code:
it('can render the index page', function () {
    livewire(ListAccounts::class, [
        'tenant' => $this->household,
    ])
        ->assertSuccessful();
})->group('index', 'page', 'resource');


But i'm getting this error:
Illuminate\Routing\Exceptions\UrlGenerationException: Missing required parameter for [Route: filament.household.resources.accounts.index] [URI: {tenant}/accounts] [Missing parameter: tenant].

does anyone know the right way of providing the tenant?
Was this page helpful?