blob: 271c8f28371438dfd390cd3e2b7ad4fb2daafa4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* 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
// with another application instance handling updates.
add_task(async function aboutPrefs_foregroundCheck_otherInstance() {
setOtherInstanceHandlingUpdates();
let params = {};
await runAboutPrefsUpdateTest(params, [
{
panelId: "otherInstanceHandlingUpdates",
checkActiveUpdate: null,
continueFile: null,
},
]);
});
|