How can I trigger focus and blur events while testing an Ember.js component?
this.$().focus();
or this.$('input').focus();
seems working but behaves different in phantomjs and chrome.
Also this.$().blur();
or this.$().focusout();
seems not working both phantomjs and chrome.