Set defer to wait for 30 seconds

This commit is contained in:
Simon Kornblith 2012-06-04 16:41:54 -04:00
parent 3769fc5ae3
commit 8a7a53a606

View File

@ -362,7 +362,7 @@ Zotero_TranslatorTester.prototype.fetchPageAndRunTest = function(test, testDoneC
var hiddenBrowser = Zotero.HTTP.processDocuments(test.url, var hiddenBrowser = Zotero.HTTP.processDocuments(test.url,
function(doc) { function(doc) {
if(test.defer) { if(test.defer) {
Zotero.setTimeout(function() { runTest(doc) }, 10000, true); Zotero.setTimeout(function() { runTest(doc) }, 30000, true);
} else { } else {
runTest(doc); runTest(doc);
} }