mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-16 19:59:14 +08:00
13 lines
277 B
JavaScript
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();
|
|
});
|