-
Notifications
You must be signed in to change notification settings - Fork 307
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
PreExecutor on IE9 accesses console in unsafe way #597
Comments
Gah, I need to modify the self tests to actually exercise Intern itself as part of the testing process (and remember that we're still supporting IE9). |
Regarding reporters, the issue is that the reporters haven't loaded at the point suite resolution happens. A better solution would be for the client to only attempt resolution if it was required; then if it fails, the client can throw an error. The tricky part there is how to definitively check for globs in the suites list. |
I'm working on some improvements in the |
Fixed in 7dc526a |
On several lines, the PreExecutor tries to log to
console
.console
is not available in IE9 when the debug window is not open, which is causing the PreExecutor to fail on most on demand platforms (which don't have the console open).I thought we had a way for dealing with messages without writing to console, by interfacing with the reporter.
The text was updated successfully, but these errors were encountered: