A Karma plugin. Launcher for shell scripts.
npm install karma-script-launcher
 
  
> Shell script launcher for Karma
This plugin allows you to use a shell script as a browser launcher. The script has to accept
a single argument - the url that the browser should open.
Install using
``bash`
$ npm install karma-script-launcher --save-dev
`js`
// karma.conf.js
module.exports = function(config) {
config.set({
browsers: ['/usr/local/bin/my-custom.sh']
})
}
You can pass list of browsers as a CLI argument too:
`bash``
$ karma start --browsers /some/custom/script.sh
----
For more information on Karma see the [homepage].
[homepage]: http://karma-runner.github.com