mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2024-11-30 10:56:51 +01:00
test exit properly
This commit is contained in:
parent
37b9bdbfc6
commit
a3ba5ed901
2
test.js
2
test.js
@ -27,10 +27,12 @@ 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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user