tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_GeckoViewAppConstants.js (480B)


      1 /* Any copyright is dedicated to the Public Domain.
      2 http://creativecommons.org/publicdomain/zero/1.0/ */
      3 "use strict";
      4 
      5 const { AppConstants } = ChromeUtils.importESModule(
      6  "resource://gre/modules/AppConstants.sys.mjs"
      7 );
      8 
      9 add_task(async function test_isolated_process_app_constant_defined() {
     10  Assert.notStrictEqual(
     11    typeof AppConstants.MOZ_ANDROID_CONTENT_SERVICE_ISOLATED_PROCESS,
     12    "undefined",
     13    "MOZ_ANDROID_CONTENT_SERVICE_ISOLATED_PROCESS is defined."
     14  );
     15 });