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: f6fc29df4dc8081623130b248621139c3a950009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export const useFakeRequestAnimationFrame = () => {
  let orig;

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

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