We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc6e6e4 commit a7db6f7Copy full SHA for a7db6f7
src/LiveComponent/doc/index.rst
@@ -3732,9 +3732,9 @@ uses Symfony's test client to render and make requests to your components::
3732
->set('count', 99)
3733
;
3734
3735
- // Submit form data
+ // Submit form data ('my_form' for your MyFormType form)
3736
$testComponent
3737
- ->submitForm(['form' => ['input' => 'value']], 'save');
+ ->submitForm(['my_form' => ['input' => 'value']], 'save');
3738
3739
$this->assertStringContainsString('Count: 99', $testComponent->render());
3740
0 commit comments