Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1607848 - Disable process preload to prevent creating process ran…
Browse files Browse the repository at this point in the history
…domly during test run. r=jdescottes

Differential Revision: https://phabricator.services.mozilla.com/D59716
  • Loading branch information
ochameau committed Jan 14, 2020
1 parent 3e82dad commit 90c957e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ add_task(async function() {
// Enabled fission's pref as the TargetList is almost disabled without it
await pushPref("devtools.browsertoolbox.fission", true);

// Disable the preloaded process as it creates processes intermittently
// which forces the emission of RDP requests we aren't correctly waiting for.
await pushPref("dom.ipc.processPrelaunch.enabled", false);

const client = await createLocalClient();
const mainRoot = client.mainRoot;

Expand Down

0 comments on commit 90c957e

Please sign in to comment.