summaryrefslogtreecommitdiffstats
path: root/browser/components/enterprisepolicies/tests/browser/browser_policies_notice_in_aboutpreferences.js
blob: 75c17ddf3677542f728e06645e4356603bc2a02f (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";

add_task(async function test_notice_in_aboutprefences() {
  await setupPolicyEngineWithJson({
    policies: {
      DummyPolicy: true,
    },
  });

  await BrowserTestUtils.withNewTab("about:preferences", async browser => {
    ok(
      !browser.contentDocument.getElementById("policies-container").hidden,
      "The Policies notice was made visible in about:preferences"
    );
  });
});