Skip to content

Commit

Permalink
Merge c200bd4 into 9d61987
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneElkin committed Oct 15, 2018
2 parents 9d61987 + c200bd4 commit 7a28dfe
Show file tree
Hide file tree
Showing 4 changed files with 1,263 additions and 674 deletions.
13 changes: 9 additions & 4 deletions karma.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,13 @@ module.exports = (config: Config) => {
frameworks: ["jasmine"],
reporters: [
"progress",
"coverage",
"karma-remap-istanbul"
"coverage-istanbul"
],
coverageIstanbulReporter: {
reports: ["html", "lcovonly", "text-summary"],
combineBrowserReports: true,
fixWebpackSourcePaths: true
},
singleRun: true,
plugins: [
"karma-remap-istanbul",
Expand All @@ -58,7 +62,8 @@ module.exports = (config: Config) => {
"karma-webpack",
"karma-jasmine",
"karma-sourcemap-loader",
"karma-chrome-launcher"
"karma-chrome-launcher",
"karma-coverage-istanbul-reporter"
],
files: [
"node_modules/jquery/dist/jquery.min.js",
Expand Down Expand Up @@ -98,6 +103,6 @@ module.exports = (config: Config) => {
webpack: webpackConfig,
webpackMiddleware: {
stats: "errors-only"
}
}
});
};

0 comments on commit 7a28dfe

Please sign in to comment.