karma-vserror-reporter
v0.0.5
Published
Karma plugin that reports in Visual Studio error format.
Downloads
6
Maintainers
Readme
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'],
...
});
};