mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2024-11-30 10:56:51 +01:00
commit
8bd8bdb05e
7
test.js
7
test.js
@ -27,22 +27,19 @@ function entryErrorCheck(md) {
|
|||||||
if (entryArray[i].pass == true) {
|
if (entryArray[i].pass == true) {
|
||||||
totalPass += 1;
|
totalPass += 1;
|
||||||
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
|
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
|
||||||
process.exit(0);
|
|
||||||
} else {
|
} else {
|
||||||
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
|
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
|
||||||
//console.log(entries[i]);
|
//console.log(entries[i]);
|
||||||
totalFail += 1;
|
totalFail += 1;
|
||||||
process.exit(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (totalFail > 0) {
|
if (totalFail > 0) {
|
||||||
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
|
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
|
||||||
|
process.exit(1);
|
||||||
testStatus = 1;
|
|
||||||
} else {
|
} else {
|
||||||
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
|
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
|
||||||
testStatus = 0;
|
process.exit(0);
|
||||||
}
|
}
|
||||||
//console.log(entries[i])
|
//console.log(entries[i])
|
||||||
//console.log(totalPass + "|" + totalFail);
|
//console.log(totalPass + "|" + totalFail);
|
||||||
|
Loading…
Reference in New Issue
Block a user