import { mount } from "@vue/test-utils"; import Footer from "./"; describe("Footer", () => { it("should render Footer instance", () => { const wrapper = mount(Footer); expect(wrapper.exists()).toBe(true); }); });