You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
820 B
33 lines
820 B
var base = require('./karma.base.config.js')
|
|
|
|
module.exports = function (config) {
|
|
var options = Object.assign(base, {
|
|
browsers: ['PhantomJS'],
|
|
reporters: ['mocha', 'coverage'],
|
|
coverageReporter: {
|
|
reporters: [
|
|
{ type: 'lcov', dir: '../coverage', subdir: '.' },
|
|
{ type: 'text-summary', dir: '../coverage', subdir: '.' }
|
|
]
|
|
},
|
|
singleRun: true,
|
|
plugins: base.plugins.concat([
|
|
'karma-coverage',
|
|
'karma-phantomjs-launcher'
|
|
])
|
|
})
|
|
|
|
// add babel-plugin-istanbul for code intrumentation
|
|
options.webpack.module.rules[0].options = {
|
|
plugins: [['istanbul', {
|
|
exclude: [
|
|
'test/',
|
|
'src/compiler/parser/html-parser.js',
|
|
'src/core/instance/proxy.js',
|
|
'src/sfc/deindent.js'
|
|
]
|
|
}]]
|
|
}
|
|
|
|
config.set(options)
|
|
}
|
|
|