Files
vant/src/action-bar-button/test/index.spec.ts
2021-02-11 13:04:00 +08:00

12 lines
270 B
TypeScript

import { mount } from '../../../test';
import ActionBarButton from '..';
test('should render default slot correctly', () => {
const wrapper = mount(ActionBarButton, {
slots: {
default: 'Content',
},
});
expect(wrapper.html()).toMatchSnapshot();
});