From 8a7a53a606d5e8bdcc2498608aa1fefe830dc788 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Mon, 4 Jun 2012 16:41:54 -0400 Subject: [PATCH] Set defer to wait for 30 seconds --- chrome/content/zotero/tools/testTranslators/translatorTester.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/tools/testTranslators/translatorTester.js b/chrome/content/zotero/tools/testTranslators/translatorTester.js index 96547aecb..8a7653340 100644 --- a/chrome/content/zotero/tools/testTranslators/translatorTester.js +++ b/chrome/content/zotero/tools/testTranslators/translatorTester.js @@ -362,7 +362,7 @@ Zotero_TranslatorTester.prototype.fetchPageAndRunTest = function(test, testDoneC var hiddenBrowser = Zotero.HTTP.processDocuments(test.url, function(doc) { if(test.defer) { - Zotero.setTimeout(function() { runTest(doc) }, 10000, true); + Zotero.setTimeout(function() { runTest(doc) }, 30000, true); } else { runTest(doc); }