ibolmo / karma-sauce-browsers

Build a dictionary of browsers based on user input that can be used in karma-sauce-launcher.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

karma-sauce-browsers

Build a dictionary of browsers based on user input to be used in karma-sauce-launcher.

Getting Started

This is a utility library for karma-sauce-launcher.

Normally, you would need to define in your Gruntfile.js customLaunchers for each target. These customLaunchers are too rigid and this library helps to build tasks that adds the customLaunchers programmatically.

Example

var browsers = require('karma-sauce-browsers');

grunt.registerTask('sauce', 'Build and launch tests to SauceLabs™ VMs', function(){

	grunt.task.run(['clean', 'build:src', 'build:specs']);

	var input = grunt.option('browsers') || 'all';
	var sets = browsers.every(browsers.from(input), 3);

	var tasks = sets.map(function(launchers, i){

		grunt.config.set('karma.sauce' + i, {
			port: 9876 + (i * 10),
			customLaunchers: launchers,
			browsers: Object.keys(launchers),
			reporters: 'saucelabs'
		});

		return 'karma:sauce' + i;

	});

	grunt.task.run(tasks);
});

Testing

npm install -g mocha   # if necessary
mocha

About

Build a dictionary of browsers based on user input that can be used in karma-sauce-launcher.

License:MIT License


Languages

Language:JavaScript 100.0%