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