0.0.5 • Published 9 years ago

karma-vserror-reporter v0.0.5

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

karma-vserror-reporter

This karma reporter plugin will log errors in visual studio style. Double click the error in the error list to go to the right file and line. Inline sourcemaps are supported.

Installation

First install and configure karma, then install the karma-vserror-reporter

$ npm install karma-vserror-reporter --save-dev

Configuration

configure in karma.conf.js the new reporter:

module.exports = function(config) {
  config.set({
    ...
    reporters: ['vserror'],
    ...
  });
};