Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 16 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | module.exports = { |
||
2 | verbose: true, |
||
3 | collectCoverage: true, |
||
4 | coverageDirectory: '../test/unit/coverage', |
||
5 | testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$", |
||
6 | rootDir: '../', |
||
7 | preset: null, |
||
8 | moduleNameMapper: { |
||
9 | '^vue$': 'vue/dist/vue.common.js' |
||
10 | }, |
||
11 | moduleFileExtensions: ["vue", "js", "json", "jsx"], |
||
12 | transform: { |
||
13 | '.js$': '<rootDir>/node_modules/babel-jest', |
||
14 | '.*\\.(vue)$': '<rootDir>/node_modules/jest-vue' |
||
15 | } |
||
16 | }; |
||
17 |