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

fake_request_animation_frame.js « helpers « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b01ae5b7c5fae1ccf016ad3036cd3b381d90f26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// eslint-disable-next-line import/prefer-default-export
export const useFakeRequestAnimationFrame = () => {
  let orig;

  beforeEach(() => {
    orig = global.requestAnimationFrame;
    global.requestAnimationFrame = cb => cb();
  });

  afterEach(() => {
    global.requestAnimationFrame = orig;
  });
};