Compare commits
2 Commits
grid-compo
...
footer-com
| Author | SHA1 | Date | |
|---|---|---|---|
| 5de7b3d676 | |||
| cde972e20e |
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);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { mount, RouterLinkStub } from "@vue/test-utils";
|
import { mount, RouterLinkStub } from "@vue/test-utils";
|
||||||
import Header from "@/components/Header";
|
import Header from "./";
|
||||||
|
|
||||||
describe("Header", () => {
|
describe("Header", () => {
|
||||||
it("should render Header instance", () => {
|
it("should render Header instance", () => {
|
||||||
Reference in New Issue
Block a user