jest-shim.ts 121 B

123456
  1. declare var global: NodeJS.Global;
  2. (<any>global).requestAnimationFrame = (callback) => {
  3. setTimeout(callback, 0);
  4. };