blob: 0955750c9350090f8de9f3cdad6c8c8f3d838706 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test for About Dialog background check for updates
// with the update downloaded when the About Dialog is opened.
add_task(async function aboutDialog_backgroundCheck_downloaded() {
let params = { backgroundUpdate: true, waitForUpdateState: STATE_PENDING };
await runAboutDialogUpdateTest(params, [
{
panelId: "apply",
checkActiveUpdate: { state: STATE_PENDING },
continueFile: null,
},
]);
});
|