Para visualizar mejor los errores se puede agregar esta línea al inicio de la función del test:
$this->withoutExceptionHandling();
Ejemplo:
public function test_create()
{
$this->withoutExceptionHandling(); #oculta la excepción del test
$user = User::factory()->create();
$this
->actingAs($user)
->get('repositories/create')
->assertStatus(200);
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?