simonihmig / ember-native-dom-helpers-codemod

Codemod to transform your jQuery based ember tests to use ember-native-dom-helpers
MIT License
27 stars 9 forks source link

Smarter transform for `$el.trigger('click')` #10

Closed cibernox closed 7 years ago

cibernox commented 7 years ago

The codemod is transforming this.$('input').trigger('click'); to await triggerEvent('input', 'click'), which is close enough but click('input') would be even better.