storybook/docs/snippets/vue/button-test.js.mdx
2020-12-23 17:00:49 +00:00

15 lines
392 B
Plaintext

```js
// tests/unit/Button.test.js
import { mount } from '@vue/test-utils';
import MyButton from '../../src/stories/Button.vue';
import { Primary } from '../../src/stories/Button.stories';
it('renders the button in the primary state', () => {
const wrapper = mount(MyButton, {
propsData: Primary.args,
});
expect(wrapper.classes()).toContain('storybook-button--primary');
});
```