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