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
Everytime I click on "DEBUG" mode to open a new window with the Jasmine results, no matter what the real error is I end up with TypeError: Cannot read property 'error' of undefined
That fires on the following line in context.js
if (!parentWindow.karma[method]) {
parentWindow.karma.error('Expected Karma method "' + method + '" to exist but it doesn\'t')
return
}
The text was updated successfully, but these errors were encountered:
It's the 'karma' property that's undefined. Looking at the original window, it has it, so for whatever reason either parentWindow isn't that window or the karma property isn't visible to the new window.
Riding a dead horse but perhaps this is helping someone:
I had this error with an pending('waiting for adjustment') inside an describe.
Moving inside it solved the problem here.
Everytime I click on "DEBUG" mode to open a new window with the Jasmine results, no matter what the real error is I end up with
TypeError: Cannot read property 'error' of undefined
That fires on the following line in context.js
The text was updated successfully, but these errors were encountered: