From 648cea85fcd7cbd414d56907c35ce33fffde53cc Mon Sep 17 00:00:00 2001 From: blackbaud-brandonhare Date: Tue, 19 Jun 2018 11:33:17 -0400 Subject: [PATCH] Added lcov to output types for istanbul --- config/karma/shared.karma.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/karma/shared.karma.conf.js b/config/karma/shared.karma.conf.js index 27d8b3c2..f7447e46 100644 --- a/config/karma/shared.karma.conf.js +++ b/config/karma/shared.karma.conf.js @@ -78,7 +78,8 @@ function getConfig(config) { reporters: [ { type: 'json' }, { type: 'html' }, - { type: 'text-summary' } + { type: 'text-summary' }, + { type: 'lcov' } ], _onWriteReport: function (collector) { return remapIstanbul.remap(collector.getFinalCoverage());