gitlab-org--gitlab-foss/spec/frontend/__helpers__/fake_request_animation_fram...

13 lines
253 B
JavaScript

export const useFakeRequestAnimationFrame = () => {
let orig;
beforeEach(() => {
orig = global.requestAnimationFrame;
global.requestAnimationFrame = (cb) => cb();
});
afterEach(() => {
global.requestAnimationFrame = orig;
});
};