1 Star 1 Fork 0

laden666666 / my-doc-jsx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
karma.conf.js 2.23 KB
一键复制 编辑 原始数据 按行查看 历史
laden666666 提交于 2018-02-26 00:35 . 提交typescript修改完成版本
var webpackConfig = require("./build/webpack.test.conf")
// Karma configuration
// Generated on Sun Mar 13 2016 22:48:42 GMT+0800 (HKT)
module.exports = function(config) {
config.set({
webpack: webpackConfig,
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'chai'],
// list of files / patterns to load in the browser
files: [
'test/**/*.spec.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'src/**/*.js': ['webpack', 'coverage'],
'test/**/*.spec.js': ['webpack']
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['mocha', 'coverage'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// browsers: ['Chrome', 'Edge', 'Firefox', 'IE'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
// coverage output setting
coverageReporter: {
reporters:[
{type: 'html', dir: 'coverage/'},
{type: 'text-summary'}
],
}
})
}
JavaScript
1
https://gitee.com/laden666666/my-doc-jsx.git
git@gitee.com:laden666666/my-doc-jsx.git
laden666666
my-doc-jsx
my-doc-jsx
master

搜索帮助