Update FooterItem unit test

This commit is contained in:
Eugene Serb 2022-12-18 12:44:45 +03:00
parent e75280fa9b
commit 8d5c58c17c
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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');
});
});