You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nope, I don't think the change in 0.5.9 fixed this issue.
I guess the issue is only if you have the console open (as IE does not have window.console defined otherwise). Then, we try to call .apply() on it. And IE is super stupid and does not have it. There's a workaround for it (call Function.prototype.apply instead). If it really bothers you, send a PR.
timbertson
added a commit
to timbertson/karma
that referenced
this issue
May 8, 2013
IE9's console.log returns typeof "object" and does not have an apply method. That causes the console patch to fail:
IE's console object is only available, when the dev Tools are open.
http://stackoverflow.com/questions/5538972/console-log-apply-not-working-in-ie9?rq=1
The text was updated successfully, but these errors were encountered: