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: '<rootDir>/test/unit/coverage', |
||
5 | testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$", |
||
6 | rootDir: '../', |
||
7 | preset: null, |
||
8 | moduleNameMapper: { |
||
9 | '^@/(.*)$': '<rootDir>/src/$1', |
||
10 | '^vue$': 'vue/dist/vue.common.js', |
||
11 | }, |
||
12 | moduleFileExtensions: ["vue", "js", "json", "jsx"], |
||
13 | transform: { |
||
14 | '.js$': '<rootDir>/node_modules/babel-jest', |
||
15 | '.*\\.(vue)$': '<rootDir>/node_modules/jest-vue' |
||
16 | }, |
||
17 | collectCoverageFrom: [ |
||
22 |