summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit_ipc/test_http3_prio_enabled_wrap.js
blob: 664869f2f52a28c4232c0ce7093e65cec6ab2b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Run test script in content process instead of chrome (xpcshell's default)
//

registerCleanupFunction(async () => {
  Services.prefs.clearUserPref("network.http.http3.priority");
  Services.prefs.clearUserPref("network.http.priority_header.enabled");
  http3_clear_prefs();
});

// setup will be called before the child process tests
add_task(async function setup() {
  await http3_setup_tests("h3-29");
});

async function run_test() {
  // test priority urgency and incremental with priority enabled
  Services.prefs.setBoolPref("network.http.http3.priority", true);
  Services.prefs.setBoolPref("network.http.priority_header.enabled", true);
  run_test_in_child("../unit/test_http3_prio_enabled.js");
  run_next_test(); // only pumps next async task from this file
}