it("must add an event listener to the passed el", function () {
      var el = createEl('div');
      var spy = sinon.spy();
      dom.addEventListener(el, 'mouseover', spy);