summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/node/jest.config.js
blob: 9c5a211c257658891cc3f674527bd2679aa04301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

/* global __dirname */

"use strict";

const sharedJestConfig = require(`${__dirname}/../../../test-helpers/shared-jest.config`);

module.exports = {
  ...sharedJestConfig,
  setupFiles: ["<rootDir>/setup.js"],
  snapshotSerializers: ["enzyme-to-json/serializer"],
  testURL: "http://localhost/",
};