Skip to content
Snippets Groups Projects
jest.config.js 405 B
Newer Older
Eric Fischer's avatar
Eric Fischer committed
module.exports = {
  "globals": {
    "gettext": (t) => { return t; },
  },
  "modulePaths": [
    "common/static/common/js/components",
  ],
  "setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
Eric Fischer's avatar
Eric Fischer committed
  "testMatch": [
Eric Fischer's avatar
Eric Fischer committed
    "common/static/common/js/components/**/?(*.)+(spec|test).js?(x)",
  ],
  "transform": {
    "^.+\\.jsx$": "babel-jest",
    "^.+\\.js$": "babel-jest",
  },