Refactor Footer module + Add basic tesst file
This commit is contained in:
9
components/Footer/Footer.spec.js
Normal file
9
components/Footer/Footer.spec.js
Normal 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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user