```md
import { Meta, Story } from '@storybook/addon-docs';
import userEvent from '@testing-library/user-event';
import { screen, fireEvent, waitFor } from '@testing-library/vue';
import MyComponent from './MyComponent.vue';
{
const Input = screen.getByLabelText('example-element');
await userEvent.type(Input, 'WrongInput', {
delay: 100,
});
const Button = screen.getByRole('button');
await fireEvent.click(Button);
await waitFor(async () => {
await userEvent.hover(screen.getByTestId('error'));
});
}}
render={() => ({
components: { MyComponent },
template: '',
})} />
```