donal
2018-04-22 3bd680802264ee3f6d8e8dede670efb4d8de9878
tests/unit/vue-components/Todo.spec.js
@@ -1,3 +1,4 @@
/* eslint-disable */
import { shallow } from "@vue/test-utils";
import Todo from "@/views/Todo.vue";
import Header from "@/components/Header.vue";
@@ -5,7 +6,7 @@
import * as all from "../setup.js";
describe("Todo.vue", () => {
  it("should render like the snapshot", () => {
  it("should render the html layout like the snapshot (see /__snapshots__/Todo.spec.js.snap)", () => {
    const wrapper = shallow(Todo);
    expect(wrapper.element).toMatchSnapshot();
  });
@@ -17,4 +18,5 @@
    const wrapper = shallow(Todo);
    expect(wrapper.find(XofYItems)).toBeTruthy();
  });
  // NEW TEST GOES HERE
});