view client/jest.config.js @ 1849:aabde3279947

client: translations: improve Makefile * Change target `translations` to only be remade if one of the `*.po` files changes. Technically is only directly depends on these files. This looks like a defect in the original upstream Makefile logic. * Add found `*.js` files to the dependencies of the `pot` target, because they are used when creating it. This looks like it was missed when adding the Makefile initially with 0fd572582ab8.
author Bernhard Reiter <bernhard@intevation.de>
date Thu, 17 Jan 2019 09:48:21 +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))"
  ]
};