donal
2018-04-22 3bd680802264ee3f6d8e8dede670efb4d8de9878
tests/unit/javascript/store.spec.js
@@ -1,5 +1,4 @@
import store from "@/store";
import * as all from "../setup.js";
describe("Initial state tests", () => {
  it("should have no todos by default", () => {
@@ -11,18 +10,6 @@
  it("should have loading true by default", () => {
    expect(store.state.loading).toBe(true);
  });
  /*
  state: {
    loading: true,
    todos: [],
    newTodo: ""
  },
  getters: {
    newTodo: state => state.newTodo,
    todos: state => state.todos
  },
  */
});
describe("state getters", () => {