Welcome to mirror list, hosted at ThFree Co, Russian Federation.

element_scroll_to.js « dom_shims « helpers « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68f8a115865bc9d70a11206d92d43843ab0c5956 (plain)
1
2
3
4
5
6
Element.prototype.scrollTo = jest.fn().mockImplementation(function scrollTo(x, y) {
  this.scrollLeft = x;
  this.scrollTop = y;

  this.dispatchEvent(new Event('scroll'));
});