tor-browser

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

browser_dbg-integration-reloading-uncompressed-sourcemaps.js (696B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
      4 
      5 /**
      6 * This runs all integration tests against a test using sources maps
      7 * whose generated files (bundles) are uncompressed.
      8 * i.e. bundles are keeping the same format as original files.
      9 */
     10 
     11 "use strict";
     12 
     13 requestLongerTimeout(10);
     14 
     15 add_task(async function () {
     16  await pushPref("devtools.debugger.map-scopes-enabled", true);
     17  const testFolder = "sourcemaps-reload-uncompressed";
     18  const isCompressed = false;
     19 
     20  await runAllIntegrationTests(testFolder, {
     21    isCompressed,
     22  });
     23 });