mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
5 lines
148 B
JavaScript
5 lines
148 B
JavaScript
// https://github.com/facebook/jest/issues/4545#issuecomment-332762365
|
|
global.requestAnimationFrame = (callback) => {
|
|
setTimeout(callback, 0);
|
|
};
|