Skip to content
New issue

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

Allow configuration for retryLimit #1126

Comments

@alias-mac
Copy link
Contributor

It would be really helpful to allow a config param in karma.conf.js for retryLimit for browser crashes.

It would avoid us to wrap the grunt or karma call in a command like:

$ for i in `seq 1 3`; do grunt karma:ci; test $? -ne 3 && break; done

command.

I don't see any available configuration in http://karma-runner.github.io/0.12/config/configuration-file.html, but I do see it in the code a possibility to pass it:

var RetryLauncher = function(retryLimit) {

Could we make this setting available in config file?
Thanks!

@gotofritz
Copy link

+1

1 similar comment
@nuthankumarns
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment