mirror of
https://github.com/eugene-serb/wavelovers.git
synced 2023-09-09 23:41:16 +03:00
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
import { shallowMount } from '@vue/test-utils';
|
|
import FooterItem from '@/components/FooterItem.vue';
|
|
|
|
describe('FooterItem.vue', () => {
|
|
it('renders slots when passed', () => {
|
|
const wrapper = shallowMount(FooterItem);
|
|
expect(wrapper.html()).toContain('Wavelovers');
|
|
});
|
|
});
|