mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
13 lines
347 B
JavaScript
13 lines
347 B
JavaScript
module.exports = {
|
|
testURL: 'http://localhost/',
|
|
moduleFileExtensions: ['js', 'vue'],
|
|
moduleNameMapper: {
|
|
'^vue$': 'vue/dist/vue.common.js',
|
|
},
|
|
transform: {
|
|
'^.+\\.js$': '<rootDir>/node_modules/babel-jest',
|
|
'.*\\.(vue)$': '<rootDir>/node_modules/jest-vue-preprocessor',
|
|
},
|
|
"testResultsProcessor": "jest-sonar-reporter"
|
|
}
|