comparison jest.config.js @ 3:1597506a2241 vue-cli

merge with vue-cli
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 13 Jun 2018 10:57:57 +0200
parents
children
comparison
equal deleted inserted replaced
2:9c6f68a8e8b2 3:1597506a2241
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 };