diff --git a/config/karma.config.js b/config/karma.config.js
index 44229e2ee886ed26fbcfc08241ba6c180d00e534..59b95427dbc1386827ecefaa199c6b1712e39396 100644
--- a/config/karma.config.js
+++ b/config/karma.config.js
@@ -13,9 +13,17 @@ module.exports = function(config) {
       { pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw)', included: false },
     ],
     preprocessors: {
-      'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap'],
+      'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap', 'coverage'],
     },
+    reporters: ['progress', 'coverage'],
     webpack: webpackConfig,
     webpackMiddleware: { stats: 'errors-only' },
+    coverageReporter: {
+      dir: './coverage-javascript',
+      reporters: [
+        { type: 'html', subdir: 'default' },
+        { type: 'text-summary' }
+      ],
+    }
   });
 };
diff --git a/package.json b/package.json
index 9581d9662379c3e49049565ec97f025971bccbab..c4206eabad10cfb3863023ce37da9b0399551f2f 100644
--- a/package.json
+++ b/package.json
@@ -43,6 +43,7 @@
     "jasmine-core": "^2.5.2",
     "jasmine-jquery": "^2.1.1",
     "karma": "^1.3.0",
+    "karma-coverage": "^1.1.1",
     "karma-jasmine": "^1.1.0",
     "karma-phantomjs-launcher": "^1.0.2",
     "karma-sourcemap-loader": "^0.3.7",