How to test repeater value in filament form?

Please confirmed my test is good or not? Please suggest how to test repeater in filament?
livewire(Create::class)
    ->fillForm([
        'name' => fake()->word(),
        'document' => fake()->file('public'),
        'bio' => fake()->sentence(),
        'experience' => [
            ['job_title' => fake()->word()],
            ['company_name' => fake()->word()],
            ['description' => fake()->sentence()]
        ]
    ])
    ->call('create')
    ->assertStatus(200);
Was this page helpful?