storybook/docs/snippets/vue/button-test.js.mdx
2021-02-23 00:26:03 +00:00

17 lines
438 B
Plaintext

```js
// tests/unit/Button.spec.js
import { mount } from '@vue/test-utils';
import MyButton from '../../src/stories/Button.vue';
//👇 Imports a specific story for the test
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');
});
```