summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/tests/browser/browser_aboutPrefs_fc_check_unsupported.js
blob: e18ce31bc44e4ed849d745f508dc93244bde1eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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 an unsupported update.
add_task(async function aboutPrefs_foregroundCheck_unsupported() {
  let params = { queryString: "&unsupported=1" };
  await runAboutPrefsUpdateTest(params, [
    {
      panelId: "checkingForUpdates",
      checkActiveUpdate: null,
      continueFile: CONTINUE_CHECK,
    },
    {
      panelId: "unsupportedSystem",
      checkActiveUpdate: null,
      continueFile: null,
    },
  ]);
});