blob: ab5eb356fdf79c8e6fbd451bbe4672e93f268782 (
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
|
const { UrlClassifierTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/UrlClassifierTestUtils.sys.mjs"
);
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();
});
}
|