-
Notifications
You must be signed in to change notification settings - Fork 668
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
Triggering event with custom data is not propagated correctly #1064
Comments
Additional information about the running environment: Failing:
|
@blake-newman Are you able to add support for this? |
I don't know if we expect
|
Also, some native events don't work as like before. wrapper.find('.something').trigger('drop', { dataTransfer: 'data' }); doesn't give option values for the emit logs, since This is a bit different from the problem for |
Version
1.0.0-beta.26
Reproduction link
https://gist.github.com/bankyadam/e10442e3fabac607882ced63ab8c4a05
Steps to reproduce
Run example test with
beta.26
or newer.What is expected?
Test passes
What is actually happening?
Test fails
I found out that
Wrapper.prototype.trigger()
does not apply the givenoptions
object on theeventObject
since the logic was extracted intocreateDOMEvent()
and we're not running in IE (8771b8f).The text was updated successfully, but these errors were encountered: