fune/netwerk/test/unit_ipc/test_trackingProtection_annotateChannels_wrap2.js
Victor Porof 2c53a5dcd9 Bug 1561435 - Format netwerk/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35919

--HG--
extra : source : afa5bd771feba466ba7670c58f3d93233a14e202
2019-07-05 10:55:23 +02:00

27 lines
739 B
JavaScript

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();
});
}