[karma] override the browser with a cli argument

This commit is contained in:
spalger 2015-08-18 15:33:29 -07:00
parent 26fe835e65
commit 32c0b1c3ac

View file

@ -16,6 +16,10 @@ module.exports = function (grunt) {
configFile: __dirname + '/src/config/kibana.yml',
karmaBrowser: (function () {
if (grunt.option('browser')) {
return grunt.option('browser');
}
switch (require('os').platform()) {
case 'win32':
return 'IE';