storybook/docs/snippets/react/component-test-with-testing-library.js.mdx
2021-11-09 01:41:54 +00:00

16 lines
439 B
Plaintext

```js
// Form.test.js
import { render, fireEvent } from '@testing-library/react';
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();
});
```