Test Failed
Push — master ( bbdab8...28d97f )
by Florian
04:57 queued 02:15
created

build/jest.config.coverage.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 16
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
nc 1
dl 0
loc 16
rs 10
c 1
b 0
f 0
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 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