You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// reports can be any that are listed here: https://github.com/istanbuljs/istanbuljs/tree/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib
91
+
reports: {
92
+
lcovonly: coverageFolder+"lcov.info",
93
+
html: coverageFolder,
94
+
"text-summary": null
95
+
},
96
+
97
+
// base output directory. If you include %browser% in the path it will be replaced with the karma browser name
98
+
dir: path.join(__dirname,"coverage"),
99
+
100
+
// Combines coverage information from multiple browsers into one report rather than outputting a report
101
+
// for each browser.
102
+
combineBrowserReports: true,
103
+
104
+
// if using webpack and pre-loaders, work around webpack breaking the source path
105
+
fixWebpackSourcePaths: true,
106
+
107
+
// Omit files with no statements, no functions and no branches from the report
108
+
skipFilesWithNoCoverage: true,
109
+
110
+
// Most reporters accept additional config options. You can pass these through the `report-config` option
111
+
"report-config": {
112
+
// all options available at: https://github.com/istanbuljs/istanbuljs/blob/aae256fb8b9a3d19414dcf069c592e88712c32c6/packages/istanbul-reports/lib/html/index.js#L135-L137
0 commit comments