vant/src/action-bar-button/test/index.spec.js
2020-11-14 07:06:21 +08:00

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();
});