Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test runs only with pattern: !msix
- Manifest: toolkit/mozapps/update/tests/browser/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test for about:preferences foreground check for updates which fails,
// because it is impossible to connect to the update server.
add_task(async function aboutPrefs_foregroundCheck_network_failure() {
let params = {
baseURL: "https://localhost:7777",
};
await runAboutPrefsUpdateTest(params, [
{
panelId: "checkingFailed",
},
]);
});