tor-browser

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

test_selectable_profile_service_exists.js (579B)


      1 /* Any copyright is dedicated to the Public Domain.
      2 https://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 "use strict";
      5 
      6 add_task(async function test_SelectableProfileAndServiceExist() {
      7  const { SelectableProfile } = ChromeUtils.importESModule(
      8    "resource:///modules/profiles/SelectableProfile.sys.mjs"
      9  );
     10  const { SelectableProfileService } = ChromeUtils.importESModule(
     11    "resource:///modules/profiles/SelectableProfileService.sys.mjs"
     12  );
     13 
     14  ok(SelectableProfile, "SelectableProfile exists");
     15  ok(SelectableProfileService, "SelectableProfileService exists");
     16 });