Livewire::test(CreateFlexListing::class)
->fillForm([
'occupationId' => Occupation::factory()->create()->id,
'description' => 'Looking for help with our Laravel app!',
'shifts' => [
[
'date' => '2023-02-16',
'to' => '17:00',
'from' => '09:00',
],
]
])
->call('save')
->assertHasNoFormErrors();
Livewire::test(CreateFlexListing::class)
->fillForm([
'occupationId' => Occupation::factory()->create()->id,
'description' => 'Looking for help with our Laravel app!',
'shifts' => [
[
'date' => '2023-02-16',
'to' => '17:00',
'from' => '09:00',
],
]
])
->call('save')
->assertHasNoFormErrors();