diff --git a/src/guide/forms.md b/src/guide/forms.md index 8ae75aa..a79e456 100644 --- a/src/guide/forms.md +++ b/src/guide/forms.md @@ -78,7 +78,7 @@ test('trigger', async () => { }) ``` -> If you haven't seen `emitted()` before, don't worry. It's used to assert the emitted events of a Component. You can learn more in [Event Handling]./event-handling). +> If you haven't seen `emitted()` before, don't worry. It's used to assert the emitted events of a Component. You can learn more in [Event Handling](./event-handling). We trigger the `click` event listener, so that the Component executes the `submit` method. As we did with `setValue`, we use `await` to make sure the action is being reflected by Vue. @@ -228,7 +228,7 @@ We then make a simple assertion, whether the form emitted the correct event and #### Native form submission -Triggering a `submit` event on a `