mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-27 03:46:35 +08:00
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();
|
|
});
|