Files
fruit-project/tests/unit/global.spec.js
2020-12-06 16:03:41 +01:00

15 lines
345 B
JavaScript

import { mount } from "@vue/test-utils";
import App from "@/App.vue";
describe("App", () => {
const wrapper = mount(App, { stubs: ["router-view", "router-link"] });
it("should be a Vue instance", () => {
expect(wrapper.vm).toBeTruthy();
});
it("renders correctly", () => {
expect(wrapper.find("#app")).toBeTruthy();
});
});