debian-mirror-gitlab/spec/frontend/__helpers__/fake_request_animation_frame.js

13 lines
253 B
JavaScript
Raw Normal View History

2020-07-28 23:09:34 +05:30
export const useFakeRequestAnimationFrame = () => {
let orig;
beforeEach(() => {
orig = global.requestAnimationFrame;
2021-03-08 18:12:59 +05:30
global.requestAnimationFrame = (cb) => cb();
2020-07-28 23:09:34 +05:30
});
afterEach(() => {
global.requestAnimationFrame = orig;
});
};