mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
Fix missing ; and == and some missing vars
This commit is contained in:
parent
c1559dd8c8
commit
69aafd7d6a
@ -52,12 +52,12 @@ function checkConfigFile() {
|
|||||||
if (err) { throw err; }
|
if (err) { throw err; }
|
||||||
v.JSHINT(data); // Parser by jshint
|
v.JSHINT(data); // Parser by jshint
|
||||||
|
|
||||||
if (v.JSHINT.errors.length == 0) {
|
if (v.JSHINT.errors.length === 0) {
|
||||||
console.log("Your configuration file doesn't contain syntax errors :)");
|
console.log("Your configuration file doesn't contain syntax errors :)");
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
errors = v.JSHINT.data().errors;
|
errors = v.JSHINT.data().errors;
|
||||||
for (idx in errors) {
|
for (var idx in errors) {
|
||||||
error = errors[idx];
|
error = errors[idx];
|
||||||
console.log("Line", error.line, "col", error.character, error.reason);
|
console.log("Line", error.line, "col", error.character, error.reason);
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ app.use(auth.connect(basic));
|
|||||||
var directories = ["/tests/configs"];
|
var directories = ["/tests/configs"];
|
||||||
var directory;
|
var directory;
|
||||||
rootPath = path.resolve(__dirname + "/../../");
|
rootPath = path.resolve(__dirname + "/../../");
|
||||||
for (i in directories) {
|
for (var i in directories) {
|
||||||
directory = directories[i];
|
directory = directories[i];
|
||||||
app.use(directory, express.static(path.resolve(rootPath + directory)));
|
app.use(directory, express.static(path.resolve(rootPath + directory)));
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ global.moment = require("moment");
|
|||||||
describe("Functions into modules/default/calendar/calendar.js", function() {
|
describe("Functions into modules/default/calendar/calendar.js", function() {
|
||||||
|
|
||||||
// Fake for use by calendar.js
|
// Fake for use by calendar.js
|
||||||
Module = {}
|
Module = {};
|
||||||
Module.definitions = {};
|
Module.definitions = {};
|
||||||
Module.register = function (name, moduleDefinition) {
|
Module.register = function (name, moduleDefinition) {
|
||||||
Module.definitions[name] = moduleDefinition;
|
Module.definitions[name] = moduleDefinition;
|
||||||
|
@ -39,7 +39,7 @@ describe("Functions module currentweather", function() {
|
|||||||
[2.0 , "2"],
|
[2.0 , "2"],
|
||||||
["2.12" , "2"],
|
["2.12" , "2"],
|
||||||
[10.1 , "10"]
|
[10.1 , "10"]
|
||||||
]
|
];
|
||||||
|
|
||||||
values.forEach(value => {
|
values.forEach(value => {
|
||||||
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
||||||
@ -66,7 +66,7 @@ describe("Functions module currentweather", function() {
|
|||||||
["2.12" , "2.1"],
|
["2.12" , "2.1"],
|
||||||
[10.1 , "10.1"],
|
[10.1 , "10.1"],
|
||||||
[10.10 , "10.1"]
|
[10.10 , "10.1"]
|
||||||
]
|
];
|
||||||
|
|
||||||
values.forEach(value => {
|
values.forEach(value => {
|
||||||
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
||||||
|
@ -7,7 +7,7 @@ var vm = require("vm");
|
|||||||
|
|
||||||
describe("Functions into modules/default/newsfeed/newsfeed.js", function() {
|
describe("Functions into modules/default/newsfeed/newsfeed.js", function() {
|
||||||
|
|
||||||
Module = {}
|
Module = {};
|
||||||
Module.definitions = {};
|
Module.definitions = {};
|
||||||
Module.register = function (name, moduleDefinition) {
|
Module.register = function (name, moduleDefinition) {
|
||||||
Module.definitions[name] = moduleDefinition;
|
Module.definitions[name] = moduleDefinition;
|
||||||
|
@ -35,7 +35,7 @@ describe("Functions module weatherforecast", function() {
|
|||||||
[2.0 , "2"],
|
[2.0 , "2"],
|
||||||
["2.12" , "2"],
|
["2.12" , "2"],
|
||||||
[10.1 , "10"]
|
[10.1 , "10"]
|
||||||
]
|
];
|
||||||
|
|
||||||
values.forEach(value => {
|
values.forEach(value => {
|
||||||
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
||||||
@ -62,7 +62,7 @@ describe("Functions module weatherforecast", function() {
|
|||||||
["2.12" , "2.1"],
|
["2.12" , "2.1"],
|
||||||
[10.1 , "10.1"],
|
[10.1 , "10.1"],
|
||||||
[10.10 , "10.1"]
|
[10.10 , "10.1"]
|
||||||
]
|
];
|
||||||
|
|
||||||
values.forEach(value => {
|
values.forEach(value => {
|
||||||
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
it(`for ${value[0]} should be return ${value[1]}`, function() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user