From d3c92cdb92e37963dfb4ec69da9c728747d671a5 Mon Sep 17 00:00:00 2001
From: donal <donalspring@gmail.com>
Date: Sat, 21 Apr 2018 19:43:42 +0200
Subject: [PATCH] FIX - linting errors for the build

---
 tests/unit/javascript/actions.spec.js |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/tests/unit/javascript/actions.spec.js b/tests/unit/javascript/actions.spec.js
index 37bd2b2..9778f34 100644
--- a/tests/unit/javascript/actions.spec.js
+++ b/tests/unit/javascript/actions.spec.js
@@ -126,10 +126,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