mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import ActionBarButton from '..';
|
|
|
|
test('should render default slot correctly', () => {
|
|
const wrapper = mount(ActionBarButton, {
|
|
slots: {
|
|
default: 'Content',
|
|
},
|
|
});
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|