We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation here it says that we can override the browsers array with different browser specs but I've found that it's only merging them.
So if I have
karma: { options: { runnerPort: 9999, browsers: ['Chrome', 'Firefox'] }, continuous: { singleRun: true, browsers: ['PhantomJS'] } }
and I run grunt karma:continuous I end up with
grunt karma:continuous
['PhantomJS', 'Firefox']
Only browsers[0] from continuous gets overridden but browsers[1] from options is left intact.
Can I suggest changing this line here to:
data = _.merge(options, data) data.browsers = this.data.browsers;
I can PR if there isn't something I'm missing?
The text was updated successfully, but these errors were encountered:
b891456
@dignifiedquire great thanks!
Sorry, something went wrong.
No branches or pull requests
In the documentation here it says that we can override the browsers array with different browser specs but I've found that it's only merging them.
So if I have
and I run
grunt karma:continuous
I end up withOnly browsers[0] from continuous gets overridden but browsers[1] from options is left intact.
Can I suggest changing this line here to:
I can PR if there isn't something I'm missing?
The text was updated successfully, but these errors were encountered: