blob: aac9b331340575f73c990e9110579d6ddfa728cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test for about:preferences foreground check for updates
// without the ability to apply updates.
add_task(async function aboutPrefs_foregroundCheck_cantApply() {
lockWriteTestFile();
let params = {};
await runAboutPrefsUpdateTest(params, [
{
panelId: "checkingForUpdates",
checkActiveUpdate: null,
continueFile: CONTINUE_CHECK,
},
{
panelId: "manualUpdate",
checkActiveUpdate: null,
continueFile: null,
},
]);
});
|