summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/fake_request_animation_frame.js
blob: ca9d82b6c3a0275f665aaa9753b731992531b73b (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;
  });
};