mirror of
https://github.com/wu736139669/ASHEBShop-h5.git
synced 2026-08-05 05:55:36 +00:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
jest.mock('dom-helpers/util/scrollbarSize', function () {
|
|
return function getScrollbarSize() {
|
|
return 20;
|
|
};
|
|
});
|
|
|
|
// Polyfill requestAnimationFrame() for ReactDOMFrameScheduling
|
|
global.requestAnimationFrame = require('raf'); |