From 3bd680802264ee3f6d8e8dede670efb4d8de9878 Mon Sep 17 00:00:00 2001
From: donal <donalspring@gmail.com>
Date: Sun, 22 Apr 2018 13:50:55 +0200
Subject: [PATCH] FIX - linting errors for the build

---
 tests/unit/vue-components/ListOfTodos.spec.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/tests/unit/vue-components/ListOfTodos.spec.js b/tests/unit/vue-components/ListOfTodos.spec.js
index 1745994..c4091b2 100644
--- a/tests/unit/vue-components/ListOfTodos.spec.js
+++ b/tests/unit/vue-components/ListOfTodos.spec.js
@@ -1,7 +1,7 @@
+/* eslint-disable */
 import { shallow, createLocalVue } from "@vue/test-utils";
 import Vuex from "vuex";
 import ListOfTodos from "@/components/ListOfTodos.vue";
-// import { expect } from 'chai'
 
 import * as all from "../setup.js";
 
@@ -35,11 +35,13 @@
 
   it("calls the loadTodos function from actionsjs when created", () => {
     const wrapper = shallow(ListOfTodos, { store, localVue });
+    expect(wrapper).toBeTruthy();
     expect(actions.loadTodos).toHaveBeenCalled();
   });
 
   it("maps getters with todos when computed", () => {
     const wrapper = shallow(ListOfTodos, { store, localVue });
+    expect(wrapper).toBeTruthy();
     expect(getters.todos).toHaveBeenCalled();
   });
 

--
Gitblit v1.9.3