tor-browser

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

jest.config.js (512B)


      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 /* global __dirname */
      6 
      7 "use strict";
      8 
      9 const sharedJestConfig = require(
     10  `${__dirname}/../../../test-helpers/shared-jest.config`
     11 );
     12 
     13 module.exports = {
     14  ...sharedJestConfig,
     15  setupFiles: ["<rootDir>/setup.js"],
     16  snapshotSerializers: ["enzyme-to-json/serializer"],
     17  testURL: "http://localhost/",
     18 };