jQuery Trigger Event in AngularJS Karma Test

江枫思渺然 提交于 2019-11-30 21:02:43

I hope this works

  var e = $.Event('keydown');
  e.which = 65;

  $(inputEl).trigger(e); // convert inputEl into a jQuery object first
  // OR
  angular.element(inputEl).triggerHandler(e); // angular.element uses triggerHandler instead of trigger to trigger events

TLDR: load jQuery before AngularJS.

At first, you may think that jQuery is not included. However, it is included. If it were not, the test would fail at $.Event.

You have 2 dependencies on jQuery here:

  1. $.Event, a direct reference; and
  2. $, indirectly referenced by angular.element();

When AngularJS is loaded, it looks for a previously loaded jQuery instance, and in case it does exist, it makes element just an alias to $. Otherwise it loads a reference to jqLite, which does not have a trigger method.

So, I'm sure you do have jQuery loaded, but that does not mean AngularJS will use it. To do so, you must ensure jQuery is loaded (anywhere) before AngularJS.

When angular.element() refers to jqLite, it would never call jQuery, even after jQuery is loaded. So you can only call methods defined on jqLite:

angular.element(inputEl).triggerHandler(e);

However, jqLite's triggerHandler would not perform event bubbling, it's not reliable to mock raising events. jQuery's trigger is way better.

To use jQuery, do this on your HTML:

<script src="jquery.js">
<script src="angular.js">

Or on your karma.conf.js:

files: [
  'lib/jquery-1.10.2.min.js',
  'lib/angular.js',
  'lib/angular-mocks.js',
  'test/**/*Spec.js'
],

Reference:

Suggestions on getting the keydown event to work on the input?

You have found one approach by working-around the problem. It's not a big deal for your unit tests, where you would want a better DOM library, but now you know what's going on.

PS: I really liked answering this one. A question from more than a year, viewed by 6k users, and still no answer to the core problem.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!