comparison client/jest.config.js @ 13:88d0d60924cf

Move vuejs app into subdir `client` Using a subdirectory for the web application keeps more structure in the repo.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 20 Jun 2018 17:02:06 +0200
parents jest.config.js@1597506a2241
children
comparison
equal deleted inserted replaced
12:000adddf74c8 13:88d0d60924cf
1 module.exports = {
2 moduleFileExtensions: ["js", "jsx", "json", "vue"],
3 transform: {
4 "^.+\\.vue$": "vue-jest",
5 ".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$":
6 "jest-transform-stub",
7 "^.+\\.jsx?$": "babel-jest"
8 },
9 moduleNameMapper: {
10 "^@/(.*)$": "<rootDir>/src/$1"
11 },
12 snapshotSerializers: ["jest-serializer-vue"],
13 testMatch: [
14 "<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
15 ]
16 };