donal
2018-04-22 3bd680802264ee3f6d8e8dede670efb4d8de9878
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable */
import { shallow } from "@vue/test-utils";
import AboutLabs from "@/components/AboutLabs.vue";
import * as all from "../setup.js";
 
describe("AboutLabs.vue", () => {
  it("has the expected html structure", () => {
    const wrapper = shallow(AboutLabs);
    expect(wrapper.element).toMatchSnapshot();
  });
});