summaryrefslogtreecommitdiffstats
path: root/ipc/glue/test/browser/browser_utility_audio_locked.js
blob: 4be22de425318803e7364145093d000ad514bf73 (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
28
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/* import-globals-from head-multiple.js */

Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/ipc/glue/test/browser/head-multiple.js",
  this
);

add_setup(async function setup() {
  await SpecialPowers.pushPrefEnv({
    set: [["media.utility-process.enabled", false]],
  });
});

add_task(async function testAudioDecodingInUtility() {
  // TODO: When getting rid of audio decoding on non utility at all, this
  // should be removed
  // We only lock the preference in Nightly builds so far, but on beta we expect
  // audio decoding error
  await runTest({
    expectUtility: isNightlyOnly(),
    expectError: !isNightlyOnly(),
  });
});