Bug 1105720 - have a larger timeout value for the very slow B2G emulator. r=cpearce

This commit is contained in:
JW Wang 2015-02-02 19:00:00 +01:00
parent 4fc4b297fd
commit 54dd85b918

View File

@ -25,8 +25,8 @@ function onTimeout() {
}
// We expect this test to finish very soon.
// A timeout of 15s should be enough for the slow B2G emulator.
var timer = setTimeout(onTimeout, 15000);
// A timeout of 90s should be enough for the slow B2G emulator.
var timer = setTimeout(onTimeout, 90000);
function finish(v) {
clearTimeout(timer);