8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import DemoButton from '..';
|
|
|
|
test('render demo button', () => {
|
|
const wrapper = mount(DemoButton);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|