mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
16 lines
439 B
Plaintext
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();
|
|
});
|
|
``` |