storybook/docs/snippets/vue/component-test-with-testing-library.js.mdx
2022-11-17 16:33:22 +01:00

23 lines
544 B
Plaintext

```js
// tests/unit/Form.spec.js
import { render, fireEvent } from '@testing-library/vue';
import LoginForm from '../../src/components/LoginForm.vue';
import { InvalidForm } from './LoginForm.stories'; //👈 Our stories imported here.
test('Checks if the form is valid', () => {
const { getByTestId, getByText } = render(LoginForm, {
props: {
...InvalidForm.args,
},
});
await fireEvent.click(getByText('Submit'));
const isFormValid = getByTestId('invalid-form');
expect(isFormValid).toBeInTheDocument();
});
```