storybook/docs/snippets/preact/component-test-with-testing-library.js.mdx
2021-10-20 15:58:44 +01:00

21 lines
521 B
Plaintext

```js
// Form.test.js
import '@testing-library/jest-dom/extend-expect';
import { h } from 'preact';
import { render, fireEvent } from '@testing-library/preact';
import { InvalidForm } from './LoginForm.stories'; //👈 Our stories imported here.
it('Checks if the form is valid', () => {
const { getByTestId, getByText } = render(<InvalidForm {...InvalidForm.args} />);
fireEvent.click(getByText('Submit'));
const isFormValid = getByTestId('invalid-form');
expect(isFormValid).toBeInTheDocument();
});
```