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