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