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/javascript/actions.spec.js |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/tests/unit/javascript/actions.spec.js b/tests/unit/javascript/actions.spec.js
index 37bd2b2..554057f 100644
--- a/tests/unit/javascript/actions.spec.js
+++ b/tests/unit/javascript/actions.spec.js
@@ -1,5 +1,4 @@
 import actions from "@/store/actions";
-import * as all from "../setup.js";
 import axios from "axios";
 import MockAdapter from "axios-mock-adapter";
 import sinon from "sinon";
@@ -126,10 +125,12 @@
   it("should call MARK_TODO_IMPORTANT", done => {
     const commit = sinon.spy();
     state.todos = todos;
-    actions.updateTodo({ commit, state }, { id: 1 , important: true }).then(() => {
-      // TODO - test goes here!
-      
-      done();
-    });
+    actions
+      .updateTodo({ commit, state }, { id: 1, important: true })
+      .then(() => {
+        // TODO - test goes here!
+
+        done();
+      });
   });
 });

--
Gitblit v1.9.3