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