Launcher for SlimerJS.
The easiest way is to keep karma-slimerjs-launcher
as a devDependency in your package.json
. You can simply do that, by running
$ npm install karma-slimerjs-launcher --save-dev
// karma.conf.js
module.exports = function(config) {
config.set({
browsers: ['SlimerJS'],
})
}
You can pass list of browsers as a CLI argument too:
$ karma start --browsers SlimerJS,Chrome
For more information on Karma see the homepage.