© 2026 Hedgehog Software, LLC
it('works', function () { livewire(CreateVehicle::class) ->fillForm([ 'plate' => 'someplate', ]) ->assertFormSet([ 'plate' => 'someplate', ]); });
public static function form(Form $form): Form { return $form ->schema([ TextInput::make('plate'), ]); }
class CreateVehicle extends CreateRecord { protected static string $resource = VehicleResource::class; }
Failed asserting that null matches expected 'someplate'
testing