10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
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);
|
|
});
|
|
});
|