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