Add stress parameter to keep refreshing until the test fails. Made npm run ctest work without auth

pull/39/head^2
Tim Robinson 2015-03-05 15:45:19 +00:00
rodzic f7114a46b8
commit dd708342df
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -337,6 +337,10 @@
function done(err) {
console.log("/" + Array(20).join("-"));
console.log("finished running " + (i - 1) + " tests from " + all.length + ". In " + (Date.now() - t) + "ms");
if (!err && document.URL.indexOf("stress=1") >= 0) {
console.log("Stress testing and found no errors so reloading");
location.reload();
}
callback && callback(err);
}
}