donal
2018-04-22 3bd680802264ee3f6d8e8dede670efb4d8de9878
commit | author | age
3bd680 1 /* eslint-disable */
c89de6 2 import { shallow } from "@vue/test-utils";
D 3 import ComponentView from "@/views/ComponentView.vue";
9d6970 4 import * as all from "../setup.js";
c89de6 5
D 6 describe("ComponentView.vue", () => {
7   it("should render like the snapshot", () => {
8     const wrapper = shallow(ComponentView);
9     expect(wrapper.element).toMatchSnapshot();
10   });
11 });