summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit_ipc/test_trackingProtection_annotateChannels_wrap2.js
blob: 7dd67a54c76a61b38db0da7bbe89c0b02248abfe (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
25
26
27
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
const { UrlClassifierTestUtils } = ChromeUtils.import(
  "resource://testing-common/UrlClassifierTestUtils.jsm"
);

function run_test() {
  do_get_profile();
  Services.prefs.setBoolPref(
    "privacy.trackingprotection.annotate_channels",
    true
  );
  Services.prefs.setBoolPref(
    "privacy.trackingprotection.lower_network_priority",
    true
  );
  do_test_pending();
  UrlClassifierTestUtils.addTestTrackers().then(() => {
    run_test_in_child(
      "../unit/test_trackingProtection_annotateChannels.js",
      () => {
        UrlClassifierTestUtils.cleanupTestTrackers();
        do_test_finished();
      }
    );
    do_test_finished();
  });
}