wavelovers/tests/unit/FooterItem.spec.ts
2022-12-18 12:44:45 +03:00

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