Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test for about:preferences foreground check for updates
// with no update available.
add_task(async function aboutPrefs_foregroundCheck_noUpdate() {
let params = { queryString: "&noUpdates=1" };
await runAboutPrefsUpdateTest(params, [
{
panelId: "checkingForUpdates",
checkActiveUpdate: null,
continueFile: CONTINUE_CHECK,
},
{
panelId: "noUpdatesFound",
checkActiveUpdate: null,
continueFile: null,
},
]);
});