Restore ability to run multiple translator tests simultaneously

This commit is contained in:
Simon Kornblith 2011-07-18 21:33:55 +00:00
parent 9f218caf75
commit e7d5f31d04

View File

@ -321,7 +321,9 @@ function init() {
var testView = translatorTestViewsToRun[type][i];
testView.updateStatus(testView._translatorTester, "pending");
}
runTranslatorTests(type);
for(var i=0; i<NUM_CONCURRENT_TESTS; i++) {
runTranslatorTests(type);
}
}
}, false);
h1.appendChild(runAll);