view client/jest.config.js @ 1715:dd9d90cae683

client: improve translation process * Add ability to run the translations Makefile with several users on a multi-user system. For this add -$(LOGNAME) to the template.pot file. This leave the behaviour of this file as is, it still can be inspected. And it allows for parallel use of several users.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 08 Jan 2019 16:58:09 +0100
parents 88d0d60924cf
children
line wrap: on
line source

module.exports = {
  moduleFileExtensions: ["js", "jsx", "json", "vue"],
  transform: {
    "^.+\\.vue$": "vue-jest",
    ".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$":
      "jest-transform-stub",
    "^.+\\.jsx?$": "babel-jest"
  },
  moduleNameMapper: {
    "^@/(.*)$": "<rootDir>/src/$1"
  },
  snapshotSerializers: ["jest-serializer-vue"],
  testMatch: [
    "<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
  ]
};