diff --git a/components/Footer/Footer.spec.js b/components/Footer/Footer.spec.js new file mode 100644 index 0000000..0e6012c --- /dev/null +++ b/components/Footer/Footer.spec.js @@ -0,0 +1,9 @@ +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); + }); +}); diff --git a/components/Footer.vue b/components/Footer/index.vue similarity index 100% rename from components/Footer.vue rename to components/Footer/index.vue