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
We were trying to use it in ng6 app test But got error regarding missing addEventListener method
i was able to fix it using
addEventListener: function(callback) { this.object.addEventListener(callback); }
The text was updated successfully, but these errors were encountered:
This might be what I'm looking for to get past the error with Angular about "ERROR TypeError: xhr.addEventListener is not a function"
Will try it out, thx!
Sorry, something went wrong.
something like this in installCypressHooks.js at line 329 inside FakeXMLHttpRequest.prototype?
addEventListener: function(type, callback) { this.object.addEventListener(type, callback); },
removeEventListener: function(type, callback) { this.object.removeEventListener(type, callback); }
installCypressHooks.js 330 add this['on' + type] = callback; to make it work in angular app #23
this['on' + type] = callback;
Successfully merging a pull request may close this issue.
We were trying to use it in ng6 app test
But got error regarding missing addEventListener method
i was able to fix it using
The text was updated successfully, but these errors were encountered: