当使用karma-coverage插件运行时,我目前遇到了Karma(0.12.31)的问题。
执行Karma,没有覆盖,测试在几秒钟后运行。 如果我使用karma-coverage插件执行业力,则需要更多时间。我知道报道可能需要更多时间,但我认为时间量很荒谬。
通过业力覆盖,我得到了消息" karma chrome未在60000毫秒内捕获,杀死"然后业力杀死Chrome(我使用43.0.2357.132)。 5分钟后,一个新的Chrome窗口打开,几秒钟后,测试最终会被执行。
我的配置是否正确,而且正常"不得不等那么久? 我们正在讨论4000项测试,尽管我只运行了其中的12项测试。
这是我的karma.conf.js文件:
module.exports = function(config){
config.set({
browserNoActivityTimeout: 60000,
basePath : '../',
preprocessors: {
'templates/*.tmpl.html': ['ng-html2js'],
'scripts/**/**/*.js': ['coverage']
},
files: [
{pattern: 'Styles/images/*.png', included: false, served: true},
'scripts/vendor/jquery-1.11.1.min.js',
'scripts/vendor/angular.js',
'tests/unit/angular-mocks.js',
'scripts/vendor/jquery.signalR-2.1.2.min.js',
'scripts/vendor/breeze.debug.js',
'scripts/vendor/go-debug.js',
'scripts/vendor/jqx-all.js',
'templates/*.tmpl.html',
'scripts/app.js',
'scripts/**/**/*.js',
'tests/unit/modelMetadata.js',
'tests/unit/solutionMetadata.js',
'tests/unit/testUtils/*.js',
'tests/unit/**/**/*.js'
],
proxies: {
'/styles': 'http://localhost:9876/styles/images',
'/scripts': 'http://localhost:9876/scripts/modules/ironPython'
},
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['Chrome'/*, 'IE'*/], //, 'Firefox'
plugins : [
'karma-coverage',
'karma-chrome-launcher',
//'karma-firefox-launcher',
//'karma-ie-launcher',
'karma-jasmine',
//'karma-teamcity-reporter',
'karma-ng-html2js-preprocessor'
],
reporters: ['progress', 'coverage'],
ngHtml2JsPreprocessor: {
moduleName: 'templates'
},
coverageReporter: {
type : 'html',
// where to store the report
dir : 'coverage/'
}
});
};