I'm trying to test my live component which contains a form. The following code raises an exception of type Symfony\Component\HttpFoundation\Exception\SessionNotFoundException.
My sample testcode:
$formComponent = $this->createLiveComponent(
name: ProductionForm::class,
)->actingAs($testUser);
$formComponent->set('form_name.title', 'Loreum Ipsum');
The user and the field exist. What else is needed to get the test working?