When I run karma start
I get the following issues
C:\\devl\\JS\\myProject>karma start
06 09 2015 11:30:19.133:WARN [plugin]: Cannot find plug
My answer might be a very rookie one, but did you add those plugins in the plugins array in the karma config file?
For example:
plugins: [
'karma-jasmine-html-reporter',
'karma-spec-reporter',
'karma-chrome-launcher',
'karma-jasmine',
'karma-coverage',
'karma-phantomjs-launcher'
],
Mine got resolved after I added the plugins to this array.