This commit is contained in:
sayrer@gmail.com 2007-05-18 13:42:56 -07:00
Родитель 5c3a4fa57a
Коммит beb6f60698
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -12,8 +12,8 @@ TestRunner._currentTest = 0;
TestRunner._urls = [];
/**
* Make sure the tests don't hang. Runs every 120 seconds, but it will
* take up to 240 seconds to detect a hang.
* Make sure the tests don't hang. Runs every 180 seconds, but it will
* take up to 360 seconds to detect a hang.
**/
TestRunner._testCheckPoint = -1;
TestRunner._checkForHangs = function() {
@ -25,7 +25,7 @@ TestRunner._checkForHangs = function() {
frameWindow.SimpleTest.finish();
}
TestRunner._testCheckPoint = TestRunner._currentTest;
TestRunner.deferred = callLater(120, TestRunner._checkForHangs);
TestRunner.deferred = callLater(180, TestRunner._checkForHangs);
}
}