Bug 858772 - Fail if the checkForUpdate request fails instead of timing out. r=fabrice

This commit is contained in:
Marco Castelluccio 2014-04-14 11:06:00 +02:00
Родитель b1cf0ff0d7
Коммит d05cab9748
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -120,7 +120,13 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=826058
app.ondownloadapplied = app.ondownloadavailable = null;
continueTest();
};
app.checkForUpdate();
request = app.checkForUpdate();
request.onerror = mozAppsError;
request.onsuccess = function() {
ok(true, "Got onsuccess");
continueTest();
};
yield undefined;
yield undefined;
icons = app.manifest.icons;