vant/src/cell-group/test/index.spec.js
2020-11-13 23:43:27 +08:00

13 lines
277 B
JavaScript

import CellGroup from '..';
import { mount } from '@vue/test-utils';
test('should render title slot and match snapshot', () => {
const wrapper = mount(CellGroup, {
slots: {
title: () => 'Custom Title',
},
});
expect(wrapper.html()).toMatchSnapshot();
});