Launcher for U.
The easiest way is to keep karma-u-launcher as a devDependency in your package.json.
{
"devDependencies": {
"karma": "~0.10",
"karma-u-launcher": "git+https://github.com/U/karma-u-launcher.git"
}
}You can simple do it by:
npm install 'git+https://github.com/U/karma-u-launcher.git' --save-dev// karma.conf.js
module.exports = function(config) {
config.set({
browsers: ['U']
});
};