Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test for About Dialog foreground check for updates
// with no update available.
add_task(async function aboutDialog_foregroundCheck_noUpdate() {
let params = { queryString: "&noUpdates=1" };
await runAboutDialogUpdateTest(params, [
{
panelId: "checkingForUpdates",
checkActiveUpdate: null,
continueFile: CONTINUE_CHECK,
},
{
panelId: "noUpdatesFound",
checkActiveUpdate: null,
continueFile: null,
},
]);
});