Jenkinsのビルド中に、Karmaランナーにcobertura形式のコードカバレッジレポートを生成させようとしています。Coverage.xmlファイルを生成するように取得できますが、実際にはカバレッジデータがありません。(を使用してLOG_DEBUG
)カバレッジプリプロセッサが実行されていないようです。
私のファイルの関連部分は次のkarma.conf.js
とおりです。
files = [
JASMINE,
JASMINE_ADAPTER,
'app/components/angular/angular.js',
'app/components/angular-mocks/angular-mocks.js',
'tmp/scripts/**/*.js',
'tmp/spec/**/*.js'
];
preprocessors = {
'tmp/scripts/**/*.js': 'coverage'
};
// test results reporter to use
// possible values: 'dots', 'progress', 'junit'
reporters = ['dots', 'junit', 'coverage'];
junitReporter = {
outputFile: 'test-results.xml'
};
coverageReporter = {
type: 'cobertura',
dir: 'coverage/',
file: 'coverage.xml'
};
(junitレポートは正常に生成されています。)