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
http protocol is hardcoded in karma.js here at the moment. This means that Karma does not work in an environment where http is not used (only https).
http
https
Karma can check window.location.protocol instead, which will allow to run it in https-only environments.
window.location.protocol
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
http
protocol is hardcoded in karma.js here at the moment. This means that Karma does not work in an environment wherehttp
is not used (onlyhttps
).Karma can check
window.location.protocol
instead, which will allow to run it inhttps
-only environments.The text was updated successfully, but these errors were encountered: