Yeomanのgenerate-angularで作成したプロジェクト(CoffeeScript)にKarma-Coverageを導入する

ココを見ましょう。

ありがとうございます。

やった内容

// package.json

 "karma-coverage": "git+https://github.com/mokemokechicken/karma-coverage.git#master",
% npm l
#karma.conf.js
       'karma-phantomjs-launcher'
       'karma-jasmine'
       'karma-coffee-preprocessor'
+      'karma-coverage'
     ]

# ............................................

-    preprocessors: '**/*.coffee': ['coffee']
+    preprocessors:
+      'app/scripts/*.coffee': 'coffee'
+      'app/scripts/*/**/*.coffee': 'coverage'
+      'test/**/*.coffee': 'coffee'
 
     # Uncomment the following lines if you are using grunt's server to run the tests
     # proxies: '/': 'http://localhost:9000/'
     # URL root prevent conflicts with the site root
     # urlRoot: '_karma_'
+
+    reporters: ['progress','coverage']

OK.そのうち解決されることを願いつつ。

参考