mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
21 lines
506 B
Plaintext
21 lines
506 B
Plaintext
```js
|
|
// Form.test.js
|
|
|
|
import { render, fireEvent } from '@testing-library/svelte';
|
|
|
|
import LoginForm from './LoginForm.svelte';
|
|
|
|
import { InvalidForm } from './LoginForm.stories'; //👈 Our stories imported here.
|
|
|
|
it('Checks if the form is valid', async () => {
|
|
const { getByTestId, getByText } = render(LoginForm, {
|
|
props: InvalidForm.args,
|
|
});
|
|
|
|
await fireEvent.click(getByText('Submit'));
|
|
|
|
const isFormValid = getByTestId('invalid-form');
|
|
expect(isFormValid).toBeInTheDocument();
|
|
});
|
|
```
|