Opens your test suites debug view in your favorite browser
npm install karma-debug-launcher
Automatically open your Karma spec in your favorite browser. An imaginary launcher.
Install the utility via npm:
``sh`
npm install karma-debug-launcher
Integrate it as a browser in your karma.config.js:
`javascript
module.exports = function(karma) {
karma.set({
...,
browsers: [ 'Debug' ]
});
};
``
MIT