Refactor Footer module + Add basic tesst file

This commit is contained in:
2020-12-18 02:07:15 +01:00
parent 8a5958dde0
commit 5787c9d8db
2 changed files with 9 additions and 0 deletions

View File

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