Merge pull request #1 from n8225/testpr

fix brimir
This commit is contained in:
n8225 2016-10-24 19:40:53 -07:00 committed by GitHub
commit 4cfd3e39ca
2 changed files with 3 additions and 1 deletions

View File

@ -27,10 +27,12 @@ function entryErrorCheck(md) {
if (entryArray[i].pass == true) {
totalPass += 1;
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
process.exit(0);
} else {
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
//console.log(entries[i]);
totalFail += 1;
process.exit(1);
}
}
}