From 36ead2251a98ee058a748dddc868dca23c59ebca Mon Sep 17 00:00:00 2001 From: Chris van Marle Date: Wed, 25 Jan 2017 11:58:20 +0100 Subject: [PATCH] Fix grunt errors --- tests/global_vars/root_path.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/global_vars/root_path.js b/tests/global_vars/root_path.js index bcb6c509..04edc03f 100644 --- a/tests/global_vars/root_path.js +++ b/tests/global_vars/root_path.js @@ -2,17 +2,18 @@ var fs = require("fs"); var path = require("path"); var chai = require("chai"); var expect = chai.expect; -var appMM = require("../../js/app.js") describe("Test global.root_path, set in js/app.js", function() { + var appMM = require("../../js/app.js") + var expectedSubPaths = [ - 'modules', - 'serveronly', - 'js', - 'js/app.js', - 'js/main.js', - 'js/electron.js', - 'config' + "modules", + "serveronly", + "js", + "js/app.js", + "js/main.js", + "js/electron.js", + "config" ]; expectedSubPaths.forEach(subpath => {